"Dive controls for swimming character controller cause character to continue sinking or rising after button is released" ...
Hi guys,
I've implemented the following code to make a Character Controller-based character dive and rise in water. The code is intended to work wih BugZergArcade's method of making a character swim:
function GetButtonInputs()
{
// Button inputs
var tapCount = Input.touchCount;
for ( var i = 0 ; i < tapCount ; i++ ) {
var touch = Input.GetTouch(i);
if (!swimming)
{
if(touch.phase == TouchPhase.Began && jumpButton.HitTest(touch.position))
{
if ( character.isGrounded )
Jump();
}
if(touch.phase == TouchPhase.Began && jumpButton.HitTest(touch.position))
{
if ( character.isGrounded )
Duck();
}
}
else
{
// Jump button to rise, crouch button to dive
if(touch.phase == TouchPhase.Began && jumpButton.HitTest(touch.position))
{
bouyancy += diveRate * Time.deltaTime;
if (bouyancy > 20)
bouyancy = 20;
}
else if(touch.phase == TouchPhase.Began && duckButton.HitTest(touch.position))
{
bouyancy -= diveRate * Time.deltaTime;
if (bouyancy < -20)
bouyancy = -20;
}
else if(touch.phase == TouchPhase.Ended && jumpButton.HitTest(touch.position))
{
bouyancy = 0;
}
else if(touch.phase == TouchPhase.Ended && duckButton.HitTest(touch.position))
{
bouyancy = 0;
}
}
//TODO: Add use buttons
}
}
function Update()
{
...
// Tap rotation stick to orient towards movement
if (rotateJoystick.tapCount == 2 )
{
FaceMovementDirection();
}
// Check for jump using right stick
if ( character.isGrounded )
{
if ( !rotateJoystick.IsFingerDown() )
canJump = true;
}
else
{
// Apply gravity to our velocity to diminish it over time, only do so when not in water.
if (!swimming)
velocity.y += Physics.gravity.y * Time.deltaTime;
else
velocity.y += bouyancy * Time.deltaTime;
// Adjust additional movement while in-air
movement.x *= inAirMultiplier;
movement.z *= inAirMultiplier;
}
GetButtonInputs();
// Move player
movement += velocity;
if (!swimming)
movement += Physics.gravity;
movement *= Time.deltaTime;
...
}
The jump button maks you rise in water, while the duck button makes you dive. Unfortunately, if you take your finger off of either button while you're swimming, the player character continues to rise or fall instead of staying at whatever depth you've gone to. What is the mistake?
MachCUBED
↧