コミュニティQ&A

Audiokineticのコミュニティ主導のQ&Aフォーラムへようこそ。ここはWwiseとStrataのユーザのみなさまがお互いに協力し合う場です。弊社チームによる直接のサポートをご希望の場合はサポートチケットページをご利用ください。バグを報告するには、Audiokinetic LauncherのBug Reportオプションをご利用ください。(Q&AフォーラムではBug Reportを受け付けておりませんのでご注意ください。専用のBug Reportシステムをご利用いただくことで、バグの報告が適切な担当部門に届き、修正される可能性が高まります。)

最適な回答を迅速に得られるよう、ご質問を投稿される際は以下のヒントをご参考ください。

  • 具体的に示す:何を達成したいのか、またはどんな問題に直面しているのかを具体的に示してください。
  • 重要な詳細情報を含める:Wwiseとゲームエンジンのバージョンやご利用のOSなど詳細情報を記載してください。
  • 試したことを説明する:すでに試してみたトラブルシューティングの手順を教えてください。
  • 事実に焦点を当てる:問題の技術的な事実を記載してください。問題に焦点を当てることで、ほかのユーザのみなさまが解決策を迅速に見つけやすくなります。

+1 支持
How to have wwise events that play sound with positioning on DOTS/ECS objects that lack a gameObject?

We are aware that posting an event demand a GameObject , altough how could wwise works with such features. We are evalutating wwise integration into a new project and we would like to know how can we approcach this.

https://unity3d.com/how-to/DOTS-resource-list

Have wwise ever support that Unity Feature ?
Yann M. (110 ポイント) General Discussion
I've had some success integrating Wwise with ECS, you'd have to create your own ECS system and call AkSoundEngine.XXX methods directly from your Entities.ForEach. You can get basic sound with the following:

AkSoundEngine.RegisterGameObjInternal(id) (you can treat the Entity struct as an ID)
AkSoundEngine.SetObjectPosition()
AkSoundEngine.PostEvent()

Calling these from ScheduleParallel() seem to work fine too, but I don't know if multithreading is actually supported.

回答 1

+1 支持
Wwise Unity Integration currently doesn't support ECS objects.

Although it's possible to use the low-level part and plug it directly by yourself. We've had good success with this, but it entails a lot of C# hacking.

There are long-term tasks we want to achieve in order to get a full high-speed support for DOTS in low-level, and we're getting there. But like all features such as this, the best bet is to ask your Audiokinetic representative about this, more we have people asking for this, more the priorities will be shifted.
Michel D. (510 ポイント)
...