Пример #1
0
 public SelectionEditor(EditorGame editorGame)
 {
     this._editorGame       = editorGame;
     this._componentService = ViewContainer.Resolve <IComponentService>();
     this._componentService.SelectionChanged += this.ComponentService_SelectionChanged;
     this._translateGizmo = new TranslateGizmo(editorGame);
 }
Пример #2
0
 internal EditorCameraWrapper(EditorGame editorGame)
 {
     this._editorGame   = editorGame;
     this._sceneService = ViewContainer.Resolve <ISceneService>();
 }
Пример #3
0
 public BaseGizmo(EditorGame editorGame)
 {
     this.EditorGame = editorGame;
 }
Пример #4
0
 public TranslateGizmo(EditorGame editorGame) : base(editorGame)
 {
     this._undoService = ViewContainer.Resolve <IUndoService>();
 }