BBGamelib.CCNode.removeChildByTag C# (CSharp) Метод

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

public removeChildByTag ( string tag, bool cleanup = true ) : void
tag string
cleanup bool
Результат void
		public void removeChildByTag(string tag, bool cleanup=true){
			NSUtils.Assert(tag!=null, "Invalid tag");
			
			CCNode child = getChildByTag (tag);
			if (child == null)
				CCDebug.Log ("cocos2d: removeChildByTag: child not found!");
			else
				removeChildAndCleanup (child, cleanup);
		}