Audiokinetic's Community Q&A is the forum where users can ask and answer questions within the Wwise and Strata communities. If you would like to get an answer from Audiokinetic's Technical support team, make sure you use the Support Tickets page.

Bugfix for Wwise Unity Treeview

0 votes

I found a bug in Wwise code:

I need \Assets\Wwise\Editor\WwiseWindows\AkWwiseTreeView.cs to be updated:

 

for (var i = 0; i < in_item.Items.Count; i++)

{

  if (!FilterTreeview(in_item.Items[i]))

            {

                in_item.IsHidden = false;

                in_item.IsSelected = false; // Sally Fix: (Added) This needs to remove the previous selection after filter.

            }

}

 

Test case:

When you search, then select, then search for another entry, the previous entry is selected.

I fixed this by adding "IsSelected = false;" in the Wwise run-time code.

 

I can provide a full test-case if necessary.

 

 

asked Sep 27, 2019 in General Discussion by Sally P. (360 points)

Please sign-in or register to answer this question.

...