fix TooltipPositioner args (#3433)

* fix TooltipPositioner args

* fix TooltipBackgroundRenderer args

* HoveredTooltipPositioner args fix

* revert blit args change
This commit is contained in:
Xander 2022-11-26 04:15:48 +00:00 committed by GitHub
parent 998ecaceef
commit 8172144dee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 13 deletions

View File

@ -2,6 +2,6 @@ CLASS net/minecraft/class_8001 net/minecraft/client/gui/tooltip/HoveredTooltipPo
FIELD field_41687 INSTANCE Lnet/minecraft/class_8000;
METHOD method_47945 preventOverflow (Lnet/minecraft/class_437;Lorg/joml/Vector2i;II)V
ARG 1 screen
ARG 2 startPos
ARG 3 endX
ARG 4 endY
ARG 2 pos
ARG 3 width
ARG 4 height

View File

@ -7,10 +7,10 @@ CLASS net/minecraft/class_8002 net/minecraft/client/gui/tooltip/TooltipBackgroun
ARG 0 renderer
ARG 1 matrix
ARG 2 buffer
ARG 3 startX
ARG 4 startY
ARG 5 endX
ARG 6 endY
ARG 3 x
ARG 4 y
ARG 5 width
ARG 6 height
ARG 7 z
METHOD method_47947 renderVerticalLine (Lnet/minecraft/class_8002$class_8003;Lorg/joml/Matrix4f;Lnet/minecraft/class_287;IIIIII)V
ARG 0 renderer
@ -26,8 +26,8 @@ CLASS net/minecraft/class_8002 net/minecraft/client/gui/tooltip/TooltipBackgroun
ARG 0 renderer
ARG 1 matrix
ARG 2 buffer
ARG 3 startX
ARG 4 startY
ARG 3 x
ARG 4 y
ARG 5 width
ARG 6 height
ARG 7 z

View File

@ -1,7 +1,7 @@
CLASS net/minecraft/class_8000 net/minecraft/client/gui/tooltip/TooltipPositioner
METHOD method_47944 getPosition (Lnet/minecraft/class_437;IIII)Lorg/joml/Vector2ic;
ARG 1 screen
ARG 2 startX
ARG 3 startY
ARG 4 endX
ARG 5 endY
ARG 2 x
ARG 3 y
ARG 4 width
ARG 5 height