@@ -20,6 +20,7 @@ public class PlayerController: MonoBehaviour
20
20
private Vector3 _velocity ;
21
21
22
22
private float jumpCount = 0 ;
23
+ private bool push = false ;
23
24
24
25
25
26
@@ -39,6 +40,8 @@ void onControllerCollider( RaycastHit2D hit )
39
40
40
41
// logs any collider hits if uncommented
41
42
//Debug.Log( "flags: " + _controller.collisionState + ", hit.normal: " + hit.normal );
43
+
44
+
42
45
}
43
46
44
47
@@ -87,7 +90,7 @@ void Update()
87
90
jumpCount ++ ;
88
91
_velocity . y = Mathf . Sqrt ( 2f * jumpHeight * - gravity ) ;
89
92
90
- // _animator.Play( Animator.StringToHash( "Jump" ) );
93
+ _animator . Play ( Animator . StringToHash ( "Jump" ) ) ;
91
94
}
92
95
93
96
//short hop
@@ -119,18 +122,17 @@ void Update()
119
122
else
120
123
WorldTransition . white = true ;
121
124
}
122
- }
123
125
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 )
127
129
{
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
+
133
134
}
135
+
134
136
}
135
137
136
138
0 commit comments