Audiokinetic's Community Q&A is the forum where users can ask and answer questions within the Wwise and Strata communities. If you would like to get an answer from Audiokinetic's Technical support team, make sure you use the Support Tickets page.

Use states for switching between characters?

0 votes

I'm starting to work on a PUGB style of game where there will be around 10 characters to play with. Since they all share many common actions (like: footsteps, health, die, get damage, etc) I was wondering if creating one single Wwise Event for each action, and then switching between characters, would be a good idea or not. It would be something like this: https://cl.ly/1p0C000M291F

I was thinking of doing the same for the NPCs but not sure what could happen when several enemies are triggering the same action.

Any thoughts?

asked Oct 22, 2017 in General Discussion by Guido M. (270 points)

1 Answer

+1 vote
For this method to work you would need to use Switches, not States. States by definition can only have one global value at a time. This means that if more than one player exists in a given game (or more than one NPC) they would not be able to have states customized to their own current actions. Switches, on the other hand, can have an infinite number of switch settings simultaneously so long as they are associated to individual game objects (ie. characters and NPCs). Beyond that, this method should work.
answered Oct 24, 2017 by Beatrix Moersch (3,280 points)
Thanks Beatrix!
You are welcome :).
...