Axiom.Samples.MousePicking.MousePickingSample.KeyReleased C# (CSharp) Méthode

KeyReleased() public méthode

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
Résultat bool
		public override bool KeyReleased( SharpInputSystem.KeyEventArgs evt )
		{
			if ( initialized )
			{
				_MouseSelector.KeepPreviousSelection = false;
			}
			return base.KeyReleased( evt );
		}