コミュニティQ&A

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

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

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

0 支持
Hi,

I've already had success integrating Wwise in Unity 5, however, when I try to call an event directly from a script, say the footsteps script in the FPS character controller and I try to call "AKSoundEngine.PostEvent("Footsteps", gameObject); " on every step cycle, I get an error mesage in Unity's console saying "The name AKSoundEngine does not exist in the current context". I've tried to call a gunshot event too from a weapon script and I got the same error. Other events work fine when I drag them from the wwise picker onto a game object but calling an event directly from a script is the problem. What am I missing here?

Thanks!
RobR (180 ポイント) General Discussion

回答 1

0 支持
 
ベストアンサー

Hello Rob, there is a typo in your call, you need to use AkSoundEngine and not AKSoundEngine.

C# is case sensitive, explaining why in your case Unity does not recognize AKSoundEngine.

You can work around this by using the auto-complete feature of your IDE.

Hope this helps !

Noemie P. (Audiokinetic) (12.9k ポイント)
Benoit S. (Audiokinetic) 選択
Thank you Fabien. Yes I actually noticed the typo and corrected it but I also finally understood what was the problem. The FPS character controller script does not recgonize Ak calls because it is one of the standard unity assets. As soon as I moved the entire FPS folder up one level it worked. Thanks for the answer!
Have the same Problem with AkSoundEngine. It just wont find it. on the FPSControllerScript. Using autocomplete on the IDE wont help.
You saved me Rob, thanks!!
Hello, I am struggling with the same error, what do you mean by moving up the entire fps folder?
Hi! I got the same error. Somebody can explain to me, what it means moving up the entire fps folder?
Hey, this moving the entire folder fix also worked for me.
In unity project window there's a folder in Assets->Standard Assets->Characters->FirstPersonCharacter
Just grab the FirstPersonCharacter folder and drop it in the root folder called Assets, that should fix it
That work For me Thanks a lot !
...