示例#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;
	}