La section Questions et réponses de la communauté Audiokinetic est un forum où les utilisateurs de Wwise et de Strata peuvent poser des questions et répondre à celles des autres membres de la communauté. Si vous souhaitez obtenir une réponse de la part de l'équipe de soutien technique d'Audiokinetic, veillez à utiliser le formulaire de Tickets de Soutien.

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
demandé 17-Nov-2020 dans General Discussion par Scott S. (120 points)

1 Réponse

+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!

 

répondu 19-Nov-2020 par chenggongzhang (1,120 points)
...