SetAlert - Actor

Member of: Actor Script

Set or clear this actor's alerted state.

SyntaxEdit

Function SetAlert(bool abAlerted = true) native

ParametersEdit

  • abAlerted: Whether to set or clear the alerted state.
    • Default: True

Return ValueEdit

None.

ExamplesEdit

; Set Nate to be alerted
Nate.SetAlert()


; Clear Nate's alerted status
Nate.SetAlert(false)

See AlsoEdit