BBGamelib.CCLayer.onExit C# (CSharp) Méthode

onExit() public méthode

public onExit ( ) : void
Résultat void
		public override void onExit ()
		{
			CCEventDispatcher eventDispatcher = CCDirectorMac.sharedDirector.eventDispatcher;
			if( _mouseEnabled )
				eventDispatcher.removeMouseDelegate(this);
			
			if( _keyboardEnabled )
				eventDispatcher.removeKeyboardDelegate(this);
			base.onExit ();
		}