Does assigning an event to two different banks will load the event and it's sample twice?

I’m wondering if assigning an event in two different banks and having both banks load will cause the same event to be loaded twice, hence an increase in memory usage? Thank you.

No, you don’t have to worry about this.

The FMOD Engine only never keeps more than one copy of an event’s metadata and sampledata in memory at a time, even if that event is assigned to multiple banks and those banks are all loaded into memory. The FMOD also does not unload an event’s data from memory until all of the banks to which that event is assigned are unloaded. You can therefore assign an event to as many banks as you want without it increasing that event’s CPU and memory consumption; and as long as at least one of those banks remains loaded, the event’s data will remain loaded into memory.

Of course, assigning an event to multiple banks does mean that a copy of that event’s sampledata and metadata will be stored in each bank, so assigning an event to multiple banks will increase the total size of your banks on disk. Whether this increase in your game’s size on disk is worth the improved ease of loading depends on your game project’s unique requirements.