Esempio n. 1
0
        public void LateTick()
        {
            if (currentState == null)
            {
                return;
            }

            currentState.LateTick();
        }
Esempio n. 2
0
        private void LateUpdate()
        {
            if (!isRunning)
            {
                return;
            }

            if (m_currentState != null)
            {
                m_currentState.LateTick(Time.deltaTime);
            }
        }