Beispiel #1
0
    void DrawNodeWindow(int id)
    {
        NodeValue nodeValue = _nodeList[id];

        NodeEditor.Draw(nodeValue, BehaviorManager.Instance.CurrentSelectId);
        GUI.DragWindow();
    }
Beispiel #2
0
    void DrawNodeWindow(int id)
    {
        NodeValue nodeValue = nodeValueList[id];

        NodeEditor.Draw(nodeValue);
        GUI.DragWindow();
    }
Beispiel #3
0
        void DrawNodeWindow(int id)
        {
            if (id >= _nodeList.Count)
            {
                return;
            }
            NodeValue nodeValue = _nodeList[id];

            NodeEditor.Draw(nodeValue, BehaviorDataController.Instance.CurrentSelectId);
            GUI.DragWindow();
        }