コード例 #1
0
ファイル: BTEditorDialog.cs プロジェクト: swordlegend/army_ru
        static void ModifyCurrentNode()
        {
            BTNode n = window.root.currentControl as BTNode;

            if (n == null)
            {
                return;
            }

            n.BeginEditMode();
        }