This repository has been archived on 2021-04-27. You can view files and clone it, but cannot push or open issues or pull requests.
2021-04-24 16:21:48 -04:00

12 lines
325 B
Rust

pub mod profiler;
pub mod triangles;
pub fn calculate_linear_slide(playthrough_percent: f64) -> f64 {
if playthrough_percent < 0.25 {
return playthrough_percent / 0.25;
} else if playthrough_percent > 0.75 {
return 1.0 - ((playthrough_percent - 0.75) / 0.25);
} else {
return 1.0;
}
}