Notifications
Clear all
[Closed] if Object A is the reference of object B
May 02, 2012 5:30 pm
i want to know if the object A is the reference of object B
it ‘s same to the “areNodesInstances” ,it ‘s easy to use
but there is no method such as “areNodesReferences”
what i do?
thank you very much!
2 Replies
May 02, 2012 5:30 pm
A Reference is a form of a clone where the baseobject is the same like in an Instance, but at some point along the modifier stack a Derived Object is inserted (shown as “Modified Object” entry in the TrackView and a thick line in the Stack View) which allows independent modifiers to be hosted above that point.
In other words, Reference objects will claim to NOT be instances, but their base objects will be the same. So you could say
fn areNodesReferences objA objB =
(
not areNodesInstances objA objB and objA.baseobject == objB.baseobject
)