Audio Listener Override solution for Isometric/TopDown game

So me and my friend are working on a game where an isometric camera is used by default, but the player can switch to a top down view by pressing R.

This is a challenge for audio in terms of the setting the listener.

I currently have this temporary solution through Event Tick logic.

In terms of functionality, we’re getting what we want from the listener here; a 3D sound emitter will be attenuated based on Player distance, if the 3D emitter is to the left of the player from the cameras perspective, it will be played through the left speaker, the spatialisation of 3D objects will also adapt to when the player transitions to Top-Down view.

I figured it’s a long shot, but does anyone have any idea of an alternative solution which is less performant than using Event Tick?

Thanks!

Firstly, I’m glad you have it working, event tick is a fine place to test things out!

The easiest thing is probably to put the logic when it changes camera angle into whatever is changing it. Say you have a BP for “BP_TopDown”, then you’ll put the change there and have an event when it switches back.

Can also put an actor component on your main character that listens for an event called from that or something.

Basically, you don’t need to use event tick if you can put it somewhere that only fires when the perspective changes.