4
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 lines
677 B

Scriptname Sound extends Form Hidden
import ObjectReference
; Play this sound base object from the specified source
int Function Play(ObjectReference akSource) native
; Play this sound from the specified source, and wait for it to finish
bool Function PlayAndWait(ObjectReference akSource) native
; Stops a given playback instance of a sound
Function StopInstance(int aiPlaybackInstance) native global
; Set the volume of a given playback instance of a sound. Clamped between 0 and 1.
Function SetInstanceVolume(int aiPlaybackInstance, float afVolume) native global
; SKSE 64 additions built 2020-07-29 17:24:48.495000 UTC
SoundDescriptor Function GetDescriptor() native