Hello, people with more knowledge than me! I recently started learning the Wwise-Unreal combo, and I have a question about a specific thing I want to achieve.
What I want: Play an event with a switch container at the location of a collision, based on the surface material (for example, a box bouncing on different types of floor).
The problem I faced (using only Blueprints) is that I can’t use the ‘Post Event at Location’ node because I couldn’t find a way to pass the switch parameter. Using ‘Post Event’ on one of the collision actors doesn’t work well either, because the sound attaches to the actor, which isn’t the desired result for accurate sound positioning.
My solution so far was to spawn and destroy an actor with an AkComponent at the collision location, passing the correct switch value, impact strength, etc.
I’m unsure, though, if this is a good solution (I imagine using a small actor pool might be better), or if there’s a better way to achieve this without C++—which I still need to explore.
Any suggestions?