fix camera jittering
This commit is contained in:
parent
f114a7f59a
commit
e5c8f4c380
|
@ -471,6 +471,9 @@ public class PlayerController : Script
|
|||
|
||||
private void Gravity()
|
||||
{
|
||||
if (currentState == RaccoonStates.CAUGHT)
|
||||
return;
|
||||
|
||||
if (rb != null)
|
||||
{
|
||||
//check player vel.y if its close to zero its on the ground
|
||||
|
@ -554,6 +557,7 @@ public class PlayerController : Script
|
|||
rb.ClearTorque();
|
||||
rb.LinearVelocity = Vector3.Zero;
|
||||
rb.AngularVelocity = Vector3.Zero;
|
||||
collider.GetCollisionShape(0).IsTrigger = true;
|
||||
}
|
||||
|
||||
public void Reset()
|
||||
|
@ -565,6 +569,7 @@ public class PlayerController : Script
|
|||
if (stateMachine && !stateMachine.IsState(typeof(PlayerIdleState)))
|
||||
stateMachine.SetState(typeof(PlayerIdleState));
|
||||
|
||||
collider.GetCollisionShape(0).IsTrigger = false;
|
||||
tranform.GlobalPosition = respawnPoint.GetComponent<Transform>().GlobalPosition;
|
||||
|
||||
GameManager.Instance.RacoonCaught();
|
||||
|
|
Loading…
Reference in New Issue