コード例 #1
0
ファイル: ColDetector.cs プロジェクト: PhaseShiftdev/BikeGame
 void OnCollisionEnter(Collision col)
 {
     if (col.gameObject.tag == "JumpPlatform")
     {
         inPlatform = true;
         machine.Jump_EnterState();
     }
 }