Firelight Technologies FMOD Studio API
Studio::Bank::getBusCount
Retrieves the number of buses in the bank.
C++ Syntax
FMOD_RESULT Studio::Bank::getBusCount(
int *count
);
C Syntax
FMOD_RESULT FMOD_Studio_Bank_GetBusCount(
FMOD_STUDIO_BANK *bank,
int *count
);
C# Syntax
RESULT Studio.Bank.getBusCount(
out int count
);
JavaScript Syntax
Bank.getBusCount(
count // writes value to count.val
);
Parameters
- count
- Address of a variable to receive the number of buses.
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::Bank::getBusList to enumerate the buses.
See Also
Version 1.10.03 Built on Feb 1, 2018