BaseMainWindow.cs 586 B

1234567891011121314151617181920212223
  1. using UnityEngine;
  2. namespace COM3D2.MeidoPhotoStudio.Plugin
  3. {
  4. public abstract class BaseMainWindow : BaseWindow
  5. {
  6. public BaseMainWindow() : base() { }
  7. public override void OnGUI(int id)
  8. {
  9. TabsPane.Draw();
  10. Draw();
  11. GUILayout.FlexibleSpace();
  12. GUIStyle labelStyle = new GUIStyle(GUI.skin.label);
  13. labelStyle.fontSize = 10;
  14. labelStyle.alignment = TextAnchor.LowerLeft;
  15. GUILayout.Label("MeidoPhotoStudio 1.0.0", labelStyle);
  16. GUI.DragWindow();
  17. }
  18. }
  19. }