public void Edit(ScopedRegistry registry, RegistryManagerController controller)
 {
     this.controller  = controller;
     this.registry    = registry;
     this.createNew   = false;
     this.initialized = true;
 }
 public void CreateNew(RegistryManagerController controller)
 {
     this.controller  = controller;
     this.createNew   = true;
     this.registry    = new ScopedRegistry();
     this.initialized = true;
 }
Exemple #3
0
 void OnDisable()
 {
     controller = null;
 }
Exemple #4
0
 void OnEnable()
 {
     controller = new RegistryManagerController();
     minSize    = new Vector2(640, 320);
 }