Axiom.Samples.MousePicking.MousePickingSample.KeyReleased C# (CSharp) Метод

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

key pressed selection event to have the ability to keep the current selection, sets the MouseSelector.KeepPreviousSelection if the right or left control key is pressed
public KeyReleased ( SharpInputSystem evt ) : bool
evt SharpInputSystem KeyEventArgs
Результат bool
		public override bool KeyReleased( SharpInputSystem.KeyEventArgs evt )
		{
			if ( initialized )
			{
				_MouseSelector.KeepPreviousSelection = false;
			}
			return base.KeyReleased( evt );
		}