public PlanarPlacementSurface(ISceneNodeBound master, Transform planeTransform, float childScaling, Quaternion childRotation)
 {
     this.master         = master;
     this.planeTransform = planeTransform;
     this.childScaling   = childScaling;
     this.childRotation  = childRotation;
 }
 public PlanarPlacementSurface(ISceneNodeBound master, Transform planeTransform)
     : this(master, planeTransform, planeTransform.Scale, planeTransform.Rotation)
 {
 }
Esempio n. 3
0
 public NavigateOnDoubleClickInteractionElement(ISceneNodeBound master, INavigationService navigationService)
 {
     this.master            = master;
     this.navigationService = navigationService;
 }
Esempio n. 4
0
 public FocusOnDoubleClickInteractionElement(ISceneNodeBound master)
 {
     this.master = master;
 }
 public SelectOnClickInteractionElement(ISceneNodeBound nodeBound, IViewService viewService)
 {
     this.nodeBound   = nodeBound;
     this.viewService = viewService;
 }
Esempio n. 6
0
 public EditRectangleInteractionElement(ISceneNodeBound master, ICommonNodeFactory commonNodeFactory)
 {
     this.master            = master;
     this.commonNodeFactory = commonNodeFactory;
 }