problem with ue5 bouncy system


i am trying to make a a navigable kayak but it keeps sinking, i tried changing the proton points several time change their sphere tinker with bouncy coefficient and the mesh properties like angular dampening but it keeps sinking does anyone have a solution.

the red spheres in the images are the protoons points

i am tying to make an obstacle avoidance game when the user ride a kayak and avoid obstacles is should i continue using bouncy system or there is better approach

Hi Mo, Let me help you with this. To help you properly with your sinking kayak issue in Unreal Engine, could you please clarify a few things:

  1. Are you using Chaos Physics or the default PhysX system?
  2. Is your kayak a single mesh or composed of multiple parts?
  3. Are you using a buoyancy plugin (like Water plugin with Buoyancy) or implementing buoyancy manually?
  4. Do you want the kayak to behave realistically (float, tip with motion, etc.) or more like an arcade-style hover/ride?
  5. Which version of Unreal Engine are you using?

I recommend watching several videos and forum discussions to understand more about the system.

Tutorial:

Forum:

If you’re still facing challenges or have new questions, feel free to share.

2 Likes

1-i am using default physx system
2-it is a single mesh.
3-i am using a bouncy plugin
4- i want to behave realistically but only sinks when it hit an obstacle
5-version 5.3.2

Adjust Physics & Mass Properly

  • Select your kayak mesh and ensure these settings:
    Simulate Physics: ON
    Enable Gravity: ON
    • Mass: Set realistic mass (e.g., 30-50 kg for a kayak)
    • Linear Damping: Set between 1.0 - 3.0
    • Angular Damping: Set between 2.0 - 5.0

Double-check your kayak’s collision shape
Incorrect collision** can cause it to ignore buoyancy and sink

Quick Buoyancy Testing

  • To quickly identify the issue, temporarily create a simple cube with:
    • Buoyancy Component
    • Properly positioned pontoons
    • Low mass (10 kg)
  • Test if this cube floats properly.
    • If it floats, your issue is with the kayak mesh or pontoon setup.
    • If it sinks, re-check the Water Body settings (collision, buoyancy).
1 Like