SetRadioOn - ObjectReference
Jump to navigation
Jump to search
Member of: ObjectReference Script
Turns on or off this radio receiver.
Syntax[edit | edit source]
Function SetRadioOn(bool abOn = true) native
Parameters[edit | edit source]
- abOn: Whether to turn on or off this radio.
- Default: True
Return Value[edit | edit source]
None
Examples[edit | edit source]
; Turns on the radio
myRadio.SetRadioOn()
; Turns off the radio
myRadio.SetRadioOn(false)