Description
Wiki Description
Gets the ActorBase that owns this object. Will return None if the object isn't owned by an actor.
Documentation Comment
Gets the actor that owns this object (or None if not owned by an Actor)
Caveats
CK Wiki - Notes
Explicit vs. Inherited Ownership
Object references can have explicit owners and inherited owners. An explicit owner is associated directly with the object. An inherited owner is derived from the container that contains the object, the cell that contains the object, or the cell that contains the container that contains the object when the object has not been associated with an explicit owner. GetActorOwner() returns only the explicit owner of an object reference and None when an explicit owner is not found.
Examples
No human-generated examples found for this function.
Auto-Generated Example
ActorBase returnedValue = myObjectReference__toCallFunctionOn.GetActorOwner()