예제 #1
0
 public void WaitforConnection()
 {
     if (m_client == null)
     {
         m_state = OSCInputState.WAIT_FOR_CONNECT;
     }
 }
예제 #2
0
 public void WaitforInput()
 {
     if (m_state != OSCInputState.WAIT_FOR_CONFIRM)
     {
         return;
     }
     m_state = OSCInputState.WAIT_FOR_INPUT;
 }
예제 #3
0
 public void WaitforConfirmConnection()
 {
     m_state = OSCInputState.WAIT_FOR_CONFIRM;
 }
예제 #4
0
 public void StopDoingAnything()
 {
     m_state = OSCInputState.IDLE;
 }