veloren/voxygen/src/hud/animation.rs
2021-08-02 13:27:33 +02:00

4 lines
119 B
Rust

pub fn animation_timer(pulse: f32) -> f32 {
(pulse * 4.0/* speed factor */).cos() * 0.5 + 0.8 //y=0.5cos(4x)+0.8
}