-
Notifications
You must be signed in to change notification settings - Fork 2
Functions
Arguments | Argument Type |
---|---|
None |
Creates the FMOD System. Required to be executed at least once for the extension to work.
Arguments | Argument Type |
---|---|
numberofchannels | Double |
studioInitFlags | Double |
Initializes the FMOD system. Required to be executed at least once for the extension to work.
Arguments | Argument Type |
---|---|
None |
Updates the FMOD System. Required to be executed every frame for the the extension to work.
Arguments | Argument Type |
---|---|
path | String |
Loads the specified *.bank
file.
Arguments | Argument Type |
---|---|
bank_handle | Double |
Loads Sample data from the specified *.bank
file.
Arguments | Argument Type |
---|---|
event_path | String |
Creates an event instance. Meant to be ran once.
Arguments | Argument Type |
---|---|
event_handle | Double |
Plays an event instance.
Arguments | Argument Type |
---|---|
handle | Double |
parameter_name | String |
value | Double |
ignoreseekspeed | Double |
Sets the specified local parameter to the given value.
Arguments | Argument Type |
---|---|
handle | Double |
parameter_name | String |
Gets the value the specified local parameter is set to.
Arguments | Argument Type |
---|---|
bus_path | String |
Gets the ID of the given bus.
Arguments | Argument Type |
---|---|
bus_handle | Double |
Gets the buses volume.
Arguments | Argument Type |
---|---|
bus_handle | Double |
volume | Double |
Sets the buses volume.
Arguments | Argument Type |
---|---|
bus_handle | String |
Gets if the specified bus is muted.
Arguments | Argument Type |
---|---|
bus_handle | String |
mute | Double |
Mutes or unmutes the specified bus.
Arguments | Argument Type |
---|---|
event_path | String |
Plays an event. Only for one-and-done events.
Arguments | Argument Type |
---|---|
event_path | String |
Check if any instance of the event is playing.
Special thanks to @lerp32 for starting this wiki.