Axiom.Core.Node.NeedUpdate C# (CSharp) Method

NeedUpdate() public method

public NeedUpdate ( bool forceParentUpdate ) : void
forceParentUpdate bool
return void
		public virtual void NeedUpdate( bool forceParentUpdate )
		{
			needParentUpdate = true;
			needChildUpdate = true;
			needTransformUpdate = true;
			needRelativeTransformUpdate = true;

			// make sure we are not the root node
			if ( parent != null && ( !isParentNotified || forceParentUpdate ) )
			{
				parent.RequestUpdate( this );
				isParentNotified = true;
			}

			// all children will be updated shortly
			childrenToUpdate.Clear();
		}

Same methods

Node::NeedUpdate ( ) : void