Skip to content

Commit eb50f79

Browse files
committed
no message
1 parent ee95a6b commit eb50f79

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

Game/Assets/Scripts/PlayerController.cs

+12-10
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ public class PlayerController: MonoBehaviour
2020
private Vector3 _velocity;
2121

2222
private float jumpCount = 0;
23+
private bool push = false;
2324

2425

2526

@@ -39,6 +40,8 @@ void onControllerCollider( RaycastHit2D hit )
3940

4041
// logs any collider hits if uncommented
4142
//Debug.Log( "flags: " + _controller.collisionState + ", hit.normal: " + hit.normal );
43+
44+
4245
}
4346

4447

@@ -87,7 +90,7 @@ void Update()
8790
jumpCount++;
8891
_velocity.y = Mathf.Sqrt(2f * jumpHeight * -gravity );
8992

90-
//_animator.Play( Animator.StringToHash( "Jump" ) );
93+
_animator.Play( Animator.StringToHash( "Jump" ) );
9194
}
9295

9396
//short hop
@@ -119,18 +122,17 @@ void Update()
119122
else
120123
WorldTransition.white = true;
121124
}
122-
}
123125

124-
void onCollisionEnter2D(Collision2D c)
125-
{
126-
if (c.gameObject.tag == "Moveable")
126+
push = Physics2D.OverlapCircle(transform.localPosition, .4f, 1 << LayerMask.NameToLayer("Moveable"));
127+
128+
/*if(push && _controller.isGrounded)
127129
{
128-
if (_velocity.x > 0.3)
129-
c.rigidbody.AddForce(new Vector2 (3, 0));
130-
if (_velocity.x < -0.3)
131-
c.rigidbody.AddForce(new Vector2 (-1, 0));
132-
}
130+
_animator.Play(Animator.StringToHash("Push"));
131+
}*/
132+
133+
133134
}
135+
134136
}
135137

136138

0 commit comments

Comments
 (0)