示例#1
0
        public ToolBox() : base(typeof(ToolBoxUI))
        {
            instance         = this;
            ui               = uistate as ToolBoxUI;
            toolLineProperty = new ToolLineProperty();
            toolSetting      = new ToolSetting();
            toolImage        = new ToolImage();

            flyCam    = new FlyCam();
            toolShape = new ToolShape();

            SelectedTool = ToolType.None;
        }
示例#2
0
 public ToolImage() : base(typeof(ImageUI))
 {
     instance = this;
     ui       = uistate as ImageUI;
 }