コード例 #1
0
        private void Test()
        {
            if (!mTestWithKey)
            {
                return;
            }

            if (JCS_Input.GetKeyDownWith(mUndoKey))
            {
                Undo();
            }

            if (JCS_Input.GetKeyDownWith(mRedoKey))
            {
                Redo();
            }
        }
コード例 #2
0
        private void Test()
        {
            if (!mTestWithKey)
            {
                return;
            }

            if (JCS_Input.GetKeyDownWith(mUndoKey))
            {
                UndoComponent();
            }

            if (JCS_Input.GetKeyDownWith(mRedoKey))
            {
                RedoComponent();
            }

            if (JCS_Input.GetKeyDown(mClearAllUndoRedoHistoryKey))
            {
                ClearAllUndoRedoHistory();
            }
        }