menu
 

Audiokinetic의 커뮤니티 Q&A는 사용자가 Wwise와 Strata 커뮤니티 내에서 서로 질문과 답변을 하는 포럼입니다. Audiokinetic의 기술 지원팀에게 문의하고 싶으신 경우 지원 티켓 페이지를 사용해주세요.

0 투표

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?

General Discussion Guido M. (270 포인트) 로 부터

1 답변

+1 투표
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.
Beatrix Moersch (3.3k 포인트) 로 부터
Thanks Beatrix!
You are welcome :).
...