BBGamelib.CCNode._setZOrder C# (CSharp) Method

_setZOrder() protected method

protected _setZOrder ( int z ) : void
z int
return void
		protected void _setZOrder(int  z)
		{
			_zOrder = z;
		}

Usage Example

        public virtual void reorderChild(CCNode child, int z)
        {
            NSUtils.Assert(child != null, "Child must be non-nil");

            _isReorderChildDirty = true;

            child.orderOfArrival = globalOrderOfArrival++;
            child._setZOrder(z);
        }
All Usage Examples Of BBGamelib.CCNode::_setZOrder