Exemplo n.º 1
0
 private void OnEnable()
 {
     tabs = new TabsBlock(new Dictionary <string, System.Action>()
     {
         { "Movement", MovementTab },
         { "Zooming", ZoomTab }
     });
     tabs.SetCurrentMethod(Cam.lastTab);
 }
Exemplo n.º 2
0
 private void OnEnable()
 {
     tabs = new TabsBlock(new Dictionary <string, System.Action>()
     {
         { "Movement", MovementTab },
         { "Height", HeightTab }
     });
     tabs.SetCurrentMethod(camera.lastTab);
 }
Exemplo n.º 3
0
 private void OnEnable()
 {
     this.tabs = new TabsBlock(new Dictionary <string, Action>
     {
         ["Movement"] = MovementTab,
         ["Rotation"] = RotationTab,
         ["Height"]   = HeightTab
     });
     this.tabs.SetCurrentMethod(this.Camera.lastTab);
 }
Exemplo n.º 4
0
 private void OnEnable()
 {
     tabs = new TabsBlock(new Dictionary<string, System.Action>() 
     {
         {"Movement", MovementTab},
         {"Rotation", RotationTab},
         {"Height", HeightTab}
     });
     tabs.SetCurrentMethod(camera.lastTab);
 }