Hide
GetWwise

Like the auto getters, this can auto-sign a wwise object (a state, a switch, a soundBank etc.) to a field.

using SaintsField.Wwise; [GetWwise("BGM*")] // Get a soundBank starts with `BGM` public Bank bank; [GetWwise("*BGM*")] // Get all events contains `BGM` public Event[] events; [GetWwise] // Get the first rtpc found public RTPC rtpc; [GetWwise("*/BGM/Stop*")] // Get events that's under any work unit, under BGM folder, and starts with `Stop` public Event stopEvents;

image