euv-engine 0.9.0

A high-performance 2D game engine built on the euv framework, featuring ECS, fixed-timestep game loop, canvas rendering, physics, collision detection, sprite animation, and audio.
Documentation
1
2
3
4
5
6
7
8
/// The default master volume level in the range 0.0 to 1.0.
pub(crate) const AUDIO_DEFAULT_VOLUME: f64 = 1.0;

/// The default playback rate multiplier (1.0 = normal speed).
pub(crate) const AUDIO_DEFAULT_PLAYBACK_RATE: f64 = 1.0;

/// The default loop state for audio playback.
pub(crate) const AUDIO_DEFAULT_LOOP: bool = false;