HasFamilyRelationship - Actor

Member of: Actor Script

Does this actor have a family relationship with the specified actor? Or with anyone if no actor is passed.

SyntaxEdit

bool Function HasFamilyRelationship(Actor akOther = None) native

ParametersEdit

  • akOther: The actor to check against. If None, then see if this actor has a family relationship with anyone.
    • Default: None

Return ValueEdit

Whether this actor has a family relationship.

ExamplesEdit

; Does JoeBob have any family?
if (JoeBob.HasFamilyRelationship())
  Debug.Trace("JoeBob has a family")
endIf


; Does JoeBob have a family relationship with Sally?
if (JoeBob.HasFamilyRelationship(Sally))
  Debug.Trace("JoeBob and Sally are family")
endIf

See AlsoEdit