コード例 #1
0
 public void Update()
 {
     if (m_cCurrentState != null)
     {
         m_cCurrentState.Execute();
     }
 }
コード例 #2
0
ファイル: StateMachine.cs プロジェクト: p6352138/Assets
 // Update is called once per frame
 public void Update(float deltaTime)
 {
     if (m_CurrentState != null)
     {
         m_CurrentState.Execute(m_Object, deltaTime);
     }
 }