Exemplo n.º 1
0
 public virtual void Show()
 {
     if (Enabled)
     {
         return;
     }
     Enabled = true;
     RTUtil.Log("Enabled");
     RenderingManager.AddToPostDrawQueue(0, Draw);
     EZGUIPointerDisablePatcher.Register(GetArea);
 }
Exemplo n.º 2
0
 public virtual void Show()
 {
     if (Enabled)
     {
         return;
     }
     if (Windows.ContainsKey(mGuid))
     {
         Windows[mGuid].Hide();
     }
     Windows[mGuid] = this;
     Enabled        = true;
     EZGUIPointerDisablePatcher.Register(RequestPosition);
 }
Exemplo n.º 3
0
 public MapViewConfigFragment()
 {
     GameEvents.onPlanetariumTargetChanged.Add(ChangeTarget);
     MapView.OnExitMapView += OnExitMapView;
     EZGUIPointerDisablePatcher.Register(GetArea);
 }