menu
 

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

0 투표
Feature Request…

I occasionally need to track down which soundbanks a particular event is included in.  This works fine if the event has been added to the soundbanks directly, but in the case that the event is inside a virtual folder, and that virtual folder has been added to the soundbank, the reference viewer returns 0 results.

It would be great if the reference viewer could find the event -> soundbank associations even when they have been added to the soundbanks as a part of a virtual folder.
Feature Requests Simon P. (240 포인트) 로 부터

1 답변

0 투표

This is possible through WAQL in 2021.1. Here is the query, in which you can replace the first path with a path from any event in the project:

$ "\Events\InteractiveMusic\IM_Start" select this, ancestors select referencesTo where type = "soundbank"

The query is:

  • Taking the specified object from the path (an event in this case)
  • From this object, Retrieving the object itself and all of its ancestors
  • From these objects, Retrieve the references to them (which are soundbanks)
  • Add a filter to only keep soundbank types

More information about WAQL:
https://www.audiokinetic.com/library/edge/?source=SDK&id=waql_getting_started.html

Bernard R. (Audiokinetic) (35.8k 포인트) 로 부터
Thanks for the swift response Bernard, I'll try this out.
...