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.

How do you set up a MultiPosition ambient object in Unreal 4?

0 votes
Hi,

I'd like to know how to set up a MultiPosition ambient object in UE4.  I can place Ambient objects in my level, but I don't know how to get them to use the same voice.

It's incredibly straight forward in Unity, but I can't for the life of me figure out how to do it in Unreal.

Any help would be greatly appreciated!

Thanks,

Scott
asked Nov 17, 2020 in General Discussion by Scott S. (120 points)

1 Answer

+2 votes

In ue4,you can't set up a MultiPosition ambient object directly. To settle this issue, you can create your own BP: 

1、create a Blueprint object that inherits the Actor class.

2、add a variable(Public) ,this variable must be an array of Transforms.

3、use the variable you created and the API called SetMultiplePositions in your Blueprint object. (this requires that you know how to use this API function)

good luck!

 

answered Nov 19, 2020 by chenggongzhang (1,120 points)
...