SourceType
Types of audio sources.
A good rule of thumb is to use stream
for music files and static
for all short sound effects. Basically, you want to avoid loading large files into memory at once.
Constants
- static
- Decode the entire sound at once.
- stream
- Stream the sound; decode it gradually.