Loading banks from GUID

Correct me if I am wrong but I dont see how to load banks without using path name. I would like to be able to use the GUIDs generated by the FMOD script. (I am already using that for events).

Sorry if this has been addressed but I can’t seem to find the answer to that question.

It’s not possible to load a bank by its GUID. This is because fundamentally, a bank needs to be loaded from file or memory - a GUID itself is not enough information for FMOD to know the location of bank data. A bank’s GUID primarily exists to identify the bank when it’s already loaded, for example when using Studio::System::getBankByID.

If you want to use a GUID to load a bank, it would require you to use your own code to associate the bank’s GUID and filesystem location and essentially abstract the existing bank load functions using that association.

Ah alright that makes sense thanks