menu
 

在 Audiokinetic 社区问答论坛上,用户可对 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.
...