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

CancelUpdate() public method

Called by children to notify their parent that they no longer need an update.
public CancelUpdate ( Node child ) : void
child Node
return void
		public virtual void CancelUpdate( Node child )
		{
			// remove this from the list of children to update
			childrenToUpdate.Remove( child.Name );

			// propogate this changed if we are done
			if ( childrenToUpdate.Count == 0 && parent != null && !needChildUpdate )
			{
				parent.CancelUpdate( this );
				isParentNotified = false;
			}
		}