示例#1
0
	//-----------------------------------------------------------------------
	void Node::_updateFromParent(void) const
	{
		updateFromParentImpl();

		// Call listener (note, this method only called if there's something to do)
		if (mListener)
		{
			mListener->nodeUpdated(this);
		}
	}
示例#2
0
	void DNode::updateFromParent( void )
	{
		updateFromParentImpl();
		signalUpdated(this);
	}
示例#3
0
	//-----------------------------------------------------------------------
	void Transform::_updateFromParent(void)
	{
		updateFromParentImpl();
	}