public GizmoResult(GizmoState state, Event interactEvent)
 {
     this.stateInt         = state;
     this.interactEventInt = interactEvent;
 }
Example #2
0
 public GizmoResult(GizmoState state, Event interactEvent)
 {
     stateInt         = state;
     interactEventInt = interactEvent;
 }
 public GizmoResult(GizmoState state)
 {
     this.stateInt         = state;
     this.interactEventInt = null;
 }
Example #4
0
 public GizmoResult(GizmoState state)
 {
     stateInt         = state;
     interactEventInt = null;
 }