BBGamelib.CCLayerBase.onEnter C# (CSharp) Méthode

onEnter() public méthode

public onEnter ( ) : void
Résultat void
		public override void onEnter ()
		{		
			// register 'parent' nodes first
			// since events are propagated in reverse order
			if (_touchEnabled)
				registerWithTouchDispatcher();
			
			
			// then iterate over all the children
			base.onEnter ();
		}