예제 #1
0
 public void ToggleLock()
 {
     _toggleLockAction.Apply();
 }
예제 #2
0
 public void Lock()
 {
     _lockAction.Apply();
 }
예제 #3
0
 public void Unlock()
 {
     _unlockAction.Apply();
 }
예제 #4
0
 public void DecreaseVelocity()
 {
     _decreaseVelocityAction.Apply();
 }
예제 #5
0
 public void Reverse()
 {
     _reverseAction.Apply();
 }
예제 #6
0
 public void IncreaseVelocity()
 {
     _increaseVelocityAction.Apply();
 }
예제 #7
0
 public void ResetVelocity()
 {
     _resetVelocityAction.Apply();
 }
예제 #8
0
 public void TurnOff()
 {
     _offAction.Apply();
 }
예제 #9
0
 public void TurnOn()
 {
     _onAction.Apply();
 }
예제 #10
0
 public void ToggleOnOff()
 {
     _toggleAction.Apply();
 }