Axiom.Samples.CharacterSample.CharacterSample.KeyPressed C# (CSharp) Метод

KeyPressed() публичный Метод

public KeyPressed ( SharpInputSystem evt ) : bool
evt SharpInputSystem
Результат bool
		public override bool KeyPressed( SharpInputSystem.KeyEventArgs evt )
		{
			// relay input events to character controller
			if ( !TrayManager.IsDialogVisible )
				chara.InjectKeyDown( evt );

			return base.KeyPressed( evt );
		}
		/// <summary>