예제 #1
0
 public KeyConvertItem(string key, UserInputState state)
 {
     Key        = KeyCode.None;
     State      = state;
     InputKey   = key;
     FloatParam = 0;
 }
예제 #2
0
 public KeyConvertItem(KeyCode key, UserInputState state, int intparam)
 {
     Key        = key;
     State      = state;
     InputKey   = string.Empty;
     FloatParam = intparam;
 }
예제 #3
0
 private void Initialize()
 {
     State = UserInputState.Normal;
 }
예제 #4
0
	private void Initialize()
	{
		State = UserInputState.Normal;
	}