Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions data/net/minecraft/util/Mth.mapping
Original file line number Diff line number Diff line change
Expand Up @@ -86,20 +86,20 @@ CLASS net/minecraft/util/Mth
ARG 4 max
METHOD clampedLerp (DDD)D
COMMENT Method for linear interpolation of doubles.
ARG 0 start
ARG 0 delta
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.
ARG 2 start
COMMENT Start value for the lerp.
ARG 2 end
ARG 4 end
COMMENT End value for the lerp.
ARG 4 delta
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.
METHOD clampedLerp (FFF)F
COMMENT Method for linear interpolation of floats.
ARG 0 start
ARG 0 delta
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.
ARG 1 start
COMMENT Start value for the lerp.
ARG 1 end
ARG 2 end
COMMENT End value for the lerp.
ARG 2 delta
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.
METHOD clampedMap (DDDDD)D
ARG 0 input
ARG 2 inputMin
Expand Down
Loading