Exemplo n.º 1
0
 private static void OnPlaymodeStateChanged()
 {
     if (isPlaying ^ EditorApplication.isPlaying)
     {
         isPlaying = EditorApplication.isPlaying;
         CEditorApp.OnPlayModeChanged(isPlaying);
     }
 }
Exemplo n.º 2
0
        static CEditorApp()
        {
            CEditorApp editorApp = new CEditorApp();

            s_sharedInstance = editorApp;
            s_editorInstance = editorApp;
            editorApp.Start();

            s_urlHandlers = CreateURLHandlersLookup();
        }
Exemplo n.º 3
0
        protected override void DrawGUI()
        {
            BeginGroup(Frame);
            {
                if (GUI.Button(this.Bounds, m_content, this.Style))
                {
                    CEditorApp.HandleURL(m_href);
                }
            }
            EndGroup();

            #if !(UNITY_4_7 || UNITY_4_6 || UNITY_4_5 || UNITY_4_4 || UNITY_4_3 || UNITY_4_2 || UNITY_4_1 || UNITY_4)
            Rect linkFrame = this.Frame;
            linkFrame.height = this.Style.font.ascent;
            CUIHelper.DrawUnderLine(linkFrame, this.Style.normal.textColor);
            #endif
        }
Exemplo n.º 4
0
        //////////////////////////////////////////////////////////////////////////////

        #region ITerminalCompositeViewDelegate

        public void ExecCommand(string commandLine)
        {
            CEditorApp.ExecCommand(commandLine, true);
        }