Exemplo n.º 1
0
 public WActorEditor(WWorld world)
 {
     m_world          = world;
     m_selectionList  = new BindingList <WActorNode>();
     m_transformGizmo = new WTransformGizmo(m_world);
     SelectedObjects  = new WEditorSelectionAggregate(m_selectionList);
 }
Exemplo n.º 2
0
        public WActorEditor(WWorld world)
        {
            m_world          = world;
            m_transformGizmo = new WTransformGizmo(m_world);

            EditorSelection = new Selection(m_world, this);
            EditorSelection.OnSelectionChanged += OnSelectionChanged;
        }
Exemplo n.º 3
0
        public WActorEditor(WWorld world)
        {
            m_world          = world;
            m_transformGizmo = new WTransformGizmo(m_world);

            EditorSelection = new Selection(m_world, this);
            EditorSelection.OnSelectionChanged += OnSelectionChanged;

            DetailsViewModel = new WDetailsViewViewModel();
        }