Community Q&A

Welcome to Audiokinetic’s community-driven Q&A forum. This is the place where Wwise and Strata users help each other out. For direct help from our team, please use the Support Tickets page. To report a bug, use the Bug Report option in the Audiokinetic Launcher. (Note that Bug Reports submitted to the Q&A forum will be rejected. Using our dedicated Bug Report system ensures your report is seen by the right people and has the best chance of being fixed.)

To get the best answers quickly, follow these tips when posting a question:

  • Be Specific: What are you trying to achieve, or what specific issue are you running into?
  • Include Key Details: Include details like your Wwise and game engine versions, operating system, etc.
  • Explain What You've Tried: Let others know what troubleshooting steps you've already taken.
  • Focus on the Facts: Describe the technical facts of your issue. Focusing on the problem helps others find a solution quickly.

+2 votes
Hi, it seems like these two functions got broken between 2017.2.3.6575 and 2018.1.1.6727 Both did nothing and leave object at (0,0,0).

I did a A-B test between these two versions above with UE4's FirstPerson project template.

1. For Ak::SoundEgnine::SetPosition, I changed

AkAudioDevice->SetPosition(this, soundpos);

to

AkAudioDevice->SetPosition(GetAkGameObjectID(), soundpos);

 in UAkComponent::UpdateGameObjectPosition() which switch calling Ak::SpatialAudio::SetPosition to Ak::SoundEngine::SetPosition

 

2. For Ak::SoundEgnine::SetMultiplePositions, it works in 2017.2.3, but in 2018.1.1, the object just stays at where its placed in the level.

 And I made sure I revert one change while testing the other one so they dont coexist.

Is this something that wwise is aware of?
in General Discussion by Lei S. (140 points)
I'm also seeing this after updating to 2018.1.1 yesterday. Did you find a solution?
Sorry for the necro, but I'm experiencing similiar issues on UE 4.21.  I am providing a single AK Component with multiple positions , however the audio appears to play only from the single position of the AKComponent.    Is this a known bug?
nm, I'm just a dum dum.  

In case anyone else is experiencing this issue, make sure you turn off 'bUseSpatialAudio' on any AKComponent you are trying to call SetMultiplePositions() on.  

It will fail if this boolean is enabled!

Please sign-in or register to answer this question.

...