2.8 branch: Fix animations. This is a merge of r10362.

This commit is contained in:
Paul MARTZ
2010-03-23 02:07:10 +00:00
parent 3fc3fc060f
commit 599715e1d1

View File

@@ -74,10 +74,10 @@ Node::Node(const Node& node,const CopyOp& copyop):
_boundingSphere(node._boundingSphere),
_boundingSphereComputed(node._boundingSphereComputed),
_parents(), // leave empty as parentList is managed by Group.
_updateCallback(node._updateCallback),
_updateCallback(copyop(node._updateCallback.get())),
_numChildrenRequiringUpdateTraversal(0), // assume no children yet.
_numChildrenRequiringEventTraversal(0), // assume no children yet.
_cullCallback(node._cullCallback),
_cullCallback(copyop(node._cullCallback.get())),
_cullingActive(node._cullingActive),
_numChildrenWithCullingDisabled(0), // assume no children yet.
_numChildrenWithOccluderNodes(0),