Firelight Technologies FMOD Studio API
Studio::System::getBankCount
Retrieves the number of loaded banks.
C++ Syntax
FMOD_RESULT Studio::System::getBankCount(
int *count
);
C Syntax
FMOD_RESULT FMOD_Studio_System_GetBankCount(
FMOD_STUDIO_SYSTEM *system,
int *count
);
C# Syntax
RESULT Studio.System.getBankCount(
out int count
);
JavaScript Syntax
System.getBankCount(
count // writes value to count.val
);
Parameters
- count
- Address of a variable to receive the number of loaded Banks.
Return Values
If the function succeeds then the return value is FMOD_OK.
If the function fails then the return value will be one of the values defined in the FMOD_RESULT enumeration.
Remarks
Used in conjunction with Studio::System::getBankList to enumerate the banks.
See Also
Version 1.10.03 Built on Feb 1, 2018