Skip to content

Instantly share code, notes, and snippets.

@andmedpin
Last active March 10, 2022 19:31
//Make a Public Variable
public AK.Wwise.Bank soundBank;
public AK.Wwise.Event soundEvent;
public AK.Wwise.RTPC rtpcName;
int number;
void Start()
{
soundBank.Load();
soundEvent.Post(this.gameObject);
}
void Update()
{
rtpcName.SetValue(this.gameObject, number);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment