BankEntry Type
One entry of a sound bank: a game-vocabulary key bound to the file that
plays under it. The whole bank loads before user init runs.
Paths resolve against the program's asset base path (Program.withAssetsBasePath) — the same rule as the asset service. Formats: whatever the raylib build decodes (WAV, OGG, MP3, FLAC, QOA).
Union cases
| Union case |
Description
|
Full Usage:
Music(key, path)
Parameters:
string
path : string
|
A music track for the single music channel.
|
Full Usage:
Sound(key, path)
Parameters:
string
path : string
|
A sound effect: plays with
|
Instance members
| Instance member |
Description
|
Full Usage:
this.IsMusic
Returns: bool
|
|
Full Usage:
this.IsSound
Returns: bool
|
|
Mibo