コード例 #1
0
ファイル: MovementSystem.cs プロジェクト: vxd555/VE-MiAGK
 void Move()
 {
     forceCurrent = Mathf.Clamp(forceCurrent + forceAdd, 0f, forceMax);
     timer.ToggleTime(true);
     snd.PlayOneShot(stepsSound[Random.Range(0, stepsSound.Count)]);
 }