La section Questions et réponses de la communauté Audiokinetic est un forum où les utilisateurs de Wwise et de Strata peuvent poser des questions et répondre à celles des autres membres de la communauté. Si vous souhaitez obtenir une réponse de la part de l'équipe de soutien technique d'Audiokinetic, veillez à utiliser le formulaire de Tickets de Soutien.

Reference viewer does not find associations between Events -> Soundbanks if they are contained in a Virtual folder

0 votes
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.
demandé 7-Sep-2021 dans Feature Requests par Simon P. (240 points)

1 Réponse

0 votes

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

répondu 7-Sep-2021 par Bernard R. (Audiokinetic) (35,110 points)
Thanks for the swift response Bernard, I'll try this out.
...