class MAGES::NeuromonitoringScene::MonitorController¶
Overview¶
Controlls the monitor UI. More…
class MonitorController: public MonoBehaviour { public: // classes class SetMonitorCompletionCountStep; class SetMonitorControllerNextActionStep; class SetMonitorControllerToolsStep; // properties MonitorController Instance; // methods void NextAction(string actionName); void SetTools(string tools); void SetCompletionCounter(int completed, int total); };
Detailed Documentation¶
Controlls the monitor UI.
Properties¶
MonitorController Instance
Gets the instance of the monitor controller.
Methods¶
void NextAction(string actionName)
Sets the current action name.
Parameters:
actionName |
The name. |
void SetTools(string tools)
Sets the tools text.
Parameters:
tools |
The text. |
void SetCompletionCounter(int completed, int total)
Sets the completion counter.
Parameters:
completed |
The completed actions. |
total |
The number of total actions. |