mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
4 lines
119 B
Rust
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
|
|
}
|