You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: data/net/minecraft/util/Mth.mapping
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -86,20 +86,20 @@ CLASS net/minecraft/util/Mth
86
86
ARG 4 max
87
87
METHOD clampedLerp (DDD)D
88
88
COMMENT Method for linear interpolation of doubles.
89
-
ARG 0 start
89
+
ARG 0 delta
90
+
COMMENT A value between 0 and 1 that indicates the percentage of the lerp. (0 will give the start value and 1 will give the end value) If the value is not between 0 and 1, it is clamped.
91
+
ARG 2 start
90
92
COMMENT Start value for the lerp.
91
-
ARG 2 end
93
+
ARG 4 end
92
94
COMMENT End value for the lerp.
93
-
ARG 4 delta
94
-
COMMENT A value between 0 and 1 that indicates the percentage of the lerp. (0 will give the start value and 1 will give the end value) If the value is not between 0 and 1, it is clamped.
95
95
METHOD clampedLerp (FFF)F
96
96
COMMENT Method for linear interpolation of floats.
97
-
ARG 0 start
97
+
ARG 0 delta
98
+
COMMENT A value between 0 and 1 that indicates the percentage of the lerp. (0 will give the start value and 1 will give the end value) If the value is not between 0 and 1, it is clamped.
99
+
ARG 1 start
98
100
COMMENT Start value for the lerp.
99
-
ARG 1 end
101
+
ARG 2 end
100
102
COMMENT End value for the lerp.
101
-
ARG 2 delta
102
-
COMMENT A value between 0 and 1 that indicates the percentage of the lerp. (0 will give the start value and 1 will give the end value) If the value is not between 0 and 1, it is clamped.
0 commit comments