BackgroundWindow.cs 716 B

123456789101112131415161718192021222324
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using UnityEngine;
  5. namespace COM3D2.MeidoPhotoStudio.Plugin
  6. {
  7. public class BackgroundWindow : BaseMainWindow
  8. {
  9. private EnvironmentManager environmentManager;
  10. private BackgroundSelectorPane backgroundSelectorPane;
  11. public BackgroundWindow(EnvironmentManager environmentManager)
  12. {
  13. this.environmentManager = environmentManager;
  14. this.backgroundSelectorPane = new BackgroundSelectorPane(this.environmentManager);
  15. }
  16. public override void Draw(params GUILayoutOption[] layoutOptions)
  17. {
  18. this.backgroundSelectorPane.Draw();
  19. }
  20. }
  21. }