BBGamelib.CCLayer.onExit C# (CSharp) 메소드

onExit() 공개 메소드

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