Exemple #1
0
        public static void Init()
        {
            ConversationEditorWindow window = (ConversationEditorWindow)EditorWindow.GetWindow(typeof(ConversationEditorWindow));

            window.Set();
            window.Show();
        }
Exemple #2
0
        //initialisation method with a sent property to display
        public static void Init(SerializedProperty sentProperty)
        {
            ConversationEditorWindow window = (ConversationEditorWindow)EditorWindow.GetWindow(typeof(ConversationEditorWindow));

            window.Set();
            if (window.propertyList == null)
            {
                window.propertyList = new List <SerializedProperty>();
            }
            window.propertyList.Add(sentProperty);
            window.Show();
        }