GetActorOwner - Cell

(Redirected from IsActorOwner - Cell)

Member of: Cell Script

Gets the ActorBase that owns this cell. Will return None if the cell isn't owned by an actor.

SyntaxEdit

ActorBase Function GetActorOwner() native

ParametersEdit

None.

Return ValueEdit

The ActorBase that owns this cell.

ExamplesEdit

; Does the emperor's base actor own the non-life star?
bool ownsNonLifeStar = (NonLifeStarProperty.GetActorOwner() == Emperor.GetActorBase())

See AlsoEdit