Do parent objects carry through child objects?

K

KDG

Guest
Example:
Parent of object1 == obj_solid
Parent of object2 == object1
In this example, will object2 also be a child of obj_solid (which contains the collision code), or only inherit the code that is unique to object1?
 

johnwo

Member
Parenting is like a hierarchy. As long as the events go untouched, the children inherits from their parents.

Cheers!
 
  • Like
Reactions: KDG
A

Aura

Guest
Ancestoral parenting is absolutely a thing, so yes, it will inherit the properties of the parent of its parent unless they are overridden.
 
  • Like
Reactions: KDG
Top