Exemple #1
0
        internal void OnEnable()
        {
            PResourceManager.SetDefaultResourcePath("Assets/Res/Scripts/Editor/res/");
            Texture icon = PResourceManager.LoadTexture(EditorGUIUtility.isProSkin
                ? "Textures/Icon_Dark.png"
                : "Textures/Icon_Light.png");

            titleContent   = new GUIContent("Proto", icon);
            minSize        = new Vector2(250, 100);
            wantsMouseMove = true;
            ProtoDecoCenter.Start();
            PPaintCenter.ClientRepaints -= Repaint;
            PPaintCenter.ClientRepaints += Repaint;
        }
Exemple #2
0
 internal void OnDestroy()
 {
     PPaintCenter.ClientRepaints -= Repaint;
     ProtoDecoCenter.Stop();
 }
Exemple #3
0
 internal void OnGUI()
 {
     ProtoDecoCenter.OnGUI(position, this == focusedWindow);
 }