I am fiddling with JMonkeyEngine 3 and a simple test program with the new water effect. I have very little experience with the engine still. Now, I have my CharacterControl, a first person view camera and my "player" is running and jumping around just fine, until it jumps in the pound; where it just sinks to the bottom.
I have tried some clumsy technique of extending the CharacterControl class and implementing the PhysicsTickListener interface to detect when the "player" is touching the water surface (2/3 of it's height below water line) and set gravity and falling speed to 0. While this allows the player to "swim" around, it's just not quite right on the realistic side.
After a lot of query search on Google, I haven't come across anything describing how to simulate water physics on a player/rigid body with JME. While I assume it may have something to do with velocity and mass (and that I have a basic understanding of these things), I'm not a mathematician and certainly not a physicist. So did anyone implement such physics with JME, or how would I go about it with my test program?
Thank you.