Example #1
0
 public UIARStateData(bool arEnabled, InstructionUIState instructionUIState, IInstructionUI currentInstructionUI, int numProxyInstances,
                      int instructionUIStep, bool placementGesturesEnabled, ARToolStateData arToolStateData, ARPlacementStateData placementStateData, ARMode arMode)
 {
     this.arEnabled            = arEnabled;
     this.instructionUIState   = instructionUIState;
     this.currentInstructionUI = currentInstructionUI;
     this.numProxyInstances    = numProxyInstances;
     this.instructionUIStep    = instructionUIStep;
     this.arToolStateData      = arToolStateData;
     this.placementStateData   = placementStateData;
     this.arMode = arMode;
 }
 public UIWalkStateData(bool walkEnabled, InstructionUIState instructionUIState, IWalkInstructionUI instruction)
 {
     this.walkEnabled        = walkEnabled;
     this.instructionUIState = instructionUIState;
     this.instruction        = instruction;
 }