mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
read the damn headers, shitlid
This commit is contained in:
parent
78d61348bf
commit
700e02223f
@ -591,11 +591,11 @@ public class BusAnimationKeyframe {
|
||||
}
|
||||
|
||||
double BLI_easing_sine_ease_in(double time, double begin, double change, double duration) {
|
||||
return -change * Math.cos(time / duration * (double) Math.PI * 2) + change + begin;
|
||||
return -change * Math.cos(time / duration * (double) Math.PI / 2) + change + begin;
|
||||
}
|
||||
|
||||
double BLI_easing_sine_ease_out(double time, double begin, double change, double duration) {
|
||||
return change * Math.sin(time / duration * (double) Math.PI * 2) + begin;
|
||||
return change * Math.sin(time / duration * (double) Math.PI / 2) + begin;
|
||||
}
|
||||
|
||||
double BLI_easing_sine_ease_in_out(double time, double begin, double change, double duration) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user