コード例 #1
0
ファイル: Engine.cs プロジェクト: Mattias-Viklund/Steelforge
        private void LateUpdate(Time time)
        {
            if (_debug)
            {
                DrawDebugTools(time);
            }

            if (mouseMode == MouseMode.CustomCursor)
            {
                cursor.SetPosition(InputManager.MOUSE_POSITION);
                window.Draw(cursor);
            }

            currentState.LateUpdate(time);
        }