Wwise SDK 2023.1.8
|
Name | Description | Parameters | Return |
---|---|---|---|
wa_call | Calls a Waapi function. |
string Uri: The identifier of the Waapi function to call. table Args: The table containing arguments. table Options: The table containing options. |
Value according to the specific function called. |
wa_copy_directory | Copies a source directory to the destination directory. |
string Source: The directory path to copy. string Destination: The destination path directory. | |
wa_copy_to_clipboard | Copies a given string to the clipboard. |
string Content: The string to copy onto the clipboard. | |
wa_debug_break | Causes a breakpoint to occur in the current process. | ||
wa_directory_exists | Checks whether a given directory exists. |
string Path: The directory to validate. |
boolean True if the directory exists, false otherwise. |
wa_ensure_directory_exist | Verifies that a given directory exists. If it does not exist, the directory is created. |
string Path: The directory to validate or create. | |
wa_get_api_statistics | Return the Lua API statistics in a table, then flush the statistic data. |
table | |
wa_get_from_clipboard | Retrieves the clipboard contents. |
string The clipboard contents. | |
wa_log | Logs a string message in Wwise. |
string Message: The message to log. | |
wa_move | Moves a source directory to a path destination. |
string Path: The source directory to move. string Path: The destination path to move to. |
boolean True if the move is successful, false otherwise. |
wa_remove_directory | Removes a directory from the filesystem. |
string Path: The directory to remove. |
boolean True if the directory is removed, false otherwise. |
wa_render_audio | Renders the audio. | ||
wa_reset_transport | Resets the transport. | ||
wa_set_local_read_only | Sets local read only |
boolean Value: The boolean value to set offline rendering to. | |
wa_set_offline_rendering | Sets offline rendering to true or false. |
boolean Value: The boolean value to set offline rendering to. | |
wa_set_user_pref | Sets user preferences. |
string Location: The location associated with the preferences to set. string Name: The name associated with the preferences to set. number, or boolean, or string Value: The value to set. | |
wa_shell_execute | Executes a shell command. |
string Arg: The command line argument. |
integer The exit code. string The output string. |
wa_sleep | Allows the thread to pause execution for a specified number of milliseconds. |
number Milliseconds: The number of milliseconds to yield for. | |
wa_start_capture_console_output | Starts capture of the console output. | ||
wa_start_output_capture | Starts output capture. |
string Filename: The string path to the file where the output capture should be saved. | |
wa_stop_capture_console_output | Stops capture of the console output. | ||
wa_stop_output_capture | Stops output capture. | ||
wa_subscribe | Subscribes to a Waapi function. |
string Uri: The identifier of the Waapi function to subscribe to. table Options: The table containing options. function Func: The function to call upon event. |
integer The id subscription integer. |
wa_temporary_directory | Creates a temporary directory. |
string The path to the temporary directory. | |
wa_time | Retrieves the current time. |
double The current time. | |
wa_unsubscribe | Unsubscribes from a Waapi subscription. |
number IdSubscription: identifier that had been returned by the Waapi function wa_subscribe. | |
wa_unsubscribe_all | Unsubscribes from all Waapi subscriptions. | ||
wa_user_name | Retrieves the username. |
string The username. |
Questions? Problems? Need more info? Contact us, and we can help!
Visit our Support pageRegister your project and we'll help you get started with no strings attached!
Get started with Wwise