社区问答

欢迎来到 Audiokinetic 社区问答论坛。在此,Wwise 和 Strata 用户可互帮互助。如需我们团队直接提供协助,请前往技术支持申请单页面。若要报告问题,请在 Audiokinetic Launcher 中选择“报告错误”选项(注意,问答论坛并不会接收错误报告)。我们内部设有专门的错误报告系统,会有专人查看报告并设法解决问题。

要想尽快得到满意的解答,请在提问时注意以下几点:

  • 描述尽量具体:比如,想达到什么样的目的,或者具体哪里有问题。
  • 包含关键细节:比如,Wwise 和游戏引擎版本以及所用操作系统等等。
  • 阐明所做努力:阐明自己为了排除故障都采取了哪些措施。
  • 聚焦问题本身:聚焦于问题本身的相关技术细节,以便别人可以快速找到解决方案。

0 投票
Hi,

Is it possible to get the State Groups under the States of a Switch Container object?

Do I need to create a StateGroup object with its children State objects under the parent SwitchContainer object?

Thanks!
分类:General Discussion | 用户: Michelle A. (220 分)

1个回答

0 投票

To get the switch container assignments states or switches, use: ak.wwise.core.switchContainer.getAssignments
https://www.audiokinetic.com/library/edge/?source=SDK&id=ak__wwise__core__switchcontainer__getassignments.html

To create assignments:

  1. Create the StateGroup and States in your project (under States, in project explorer game sync tab)
  2. Use ak.wwise.core.switchContainer.addAssignment to create an assignment in your switch container
To retrieve or set which switch group or state group is being used on the Switch Container:
  1. To get, use ak.wwise.core.object.get with reference name SwitchGroupOrStateGroup and DefaultSwitchOrState
     "return": [ "@SwitchGroupOrStateGroup", "@DefaultSwitchOrState" ]
  2. To set, use ak.wwise.core.object.setReference, with SwitchGroupOrStateGroup or DefaultSwitchOrState
用户: Bernard R. (Audiokinetic) (35.8k 分)
修改于 用户:Bernard R. (Audiokinetic)
I do use getAssignments, but that only seems to get the Assigned Objects in the Contents Editor.  I'm not sure why I'm not also getting the States/StateGroups.  Would they require different WAAPI calls?  Thanks!
Thanks for the precision, I updated the answer.
Thanks for the update.  I'm able to set those references under the General Settings tab, but I'm trying to add State Groups to an object in the States tab.  Is it possible to do that with WAAPI?  When I use get/setAssignments, am I only able to assign objects for whatever switch/state is set in General Settings?  When I set the reference to a Switch, it gets and sets the switches under Assigned Objects.  Do I need to set the Group to a State before I can get/set State Groups?  Thanks!
Sorry, I misunderstood your question. No, it is not possible to set or get the State values in the States tab. I noted your request.
...