About this mod
This mod will add buoyancy physics to the game namely for bodies and select items.
- Permissions and credits
- Changelogs
- Donations
This mod will add buoyancy physics to the game namely for bodies and select items.
Configuration
You can configure the mod in the mod settings
Bodies
"Time To Decompose": Determines how long in minutes before the body will start to float (default 0.0)
"Depth Before Submerged": Determines how submerged the body is (default 0.2)
"Displacement Amount": Determines how buoyant a body is (default 1.5)
"Water Drag": Determines how much to dampen movement in water (default 2.0)
"Water Angular Drag": Determines how much to dampen rotation in water (default 1.0)
Installation
Can be installed like any other mod using a mod manager.
Mod Showcase
For Mod Authors
You can add an ItemModule to any item to give it buoyancy. You can specify which points should be affected in the floaters array (necessary for larger items)
"modules": [
{
"$type": "BuoyantBodies.ItemModuleBuoyancy, BuoyantBodies",
"depthBeforeSubmerged": 0.2,
"displacementAmount": 1.0,
"waterDrag": 0.0,
"waterAngularDrag": 3.0,
"floaters": [
{
"x": 0,
"y": 0,
"z": 0
}
]
}
],