menu
 

AudiokineticのコミュニティQ&AはWwiseやStrataのコミュニティ内でユーザ同士が質問・回答をし合うことができるフォーラムです。Audiokineticテクニカルサポートチームからの回答をご希望の場合は、必ず サポートチケットページ をご利用ください。

0 支持
Is there a way to find all elements that don't match something in their name?

For example: I have a bunch of containers that start with the word "step". I want to find all containers that don't have word "step" in them.
Stephen F. (200 ポイント) General Discussion

回答 1

0 支持
 
ベストアンサー

Unfortunately, the Query Editor does not have a "not" operator: I'm taking note of that request though and adding it to our backlog.

As a possible solution, the recently released Wwise 2021.1 offers WAQL (Wwise Authoring Query Language) that you can use in the search field of the Authoring. For your case, a WAQL query that translates your query would be:

$ where ! name = /^step/

For more information about WAQL, see https://www.audiokinetic.com/library/edge/?source=SDK&id=waql_reference.html.

Samuel L. (Audiokinetic) (23.6k ポイント)
Stephen F. 選択
I just saw the WAQL article on the Wwise Launcher and that looks like the solution I need. Will update as soon as I can.
...