Play - Sound

Member of: Sound Script

Plays the sound from the location of the specified object reference.

SyntaxEdit

int Function Play(ObjectReference akSource) native

ParametersEdit

Return ValueEdit

The returned integer is the playback instance ID, which can be used to control the sound after it has been started. If 0 is returned the sound failed to play.

ExamplesEdit

int instanceID = mySFX.play(self)          ; play mySFX sound from my self
Sound.SetInstanceVolume(instanceID, 0.5)         ; play at half volume

See AlsoEdit