When should I use Mix_Chunk instead of Mix_Music?
|
feedback
|
|
Mix_Chunk is used for playing sound samples, while Mix_Music is meant to play music. One key difference between the two is that multiple Mix_Chunk can be played at once on different sound channels, whereas only one Mix_Music may be played at the time. For example, if you're programming a game, you'd want to use Mix_Music for the background music and Mix_Chunk for sound effects (lasers, powerups, etc.) | |||
|
feedback
|
|
Since playing both types of audio are supported, there is a structure fo each type.
When you want to play sound effects, you would use a It's important to remember that you can play multiple samples at once, but you can only play one music at a time. | |||||
feedback
|