From a0ec4231f8334cfc0cfcda1e02ad09b7ebf8f98a Mon Sep 17 00:00:00 2001 From: LambdAurora Date: Sat, 29 May 2021 12:52:11 +0200 Subject: [PATCH] Entity and entity models documentations (#2431) * Map some axolotl stuff and start work on entity and entity models documentation. * Improve entity models documentation. * Update mappings/net/minecraft/client/model/Model.mapping Co-authored-by: liach <7806504+liach@users.noreply.github.com> * More entity model documentation. * Axolotl brain and tasks. * Update mappings/net/minecraft/client/render/entity/model/CatEntityModel.mapping Co-authored-by: liach <7806504+liach@users.noreply.github.com> Co-authored-by: liach <7806504+liach@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .../net/minecraft/client/model/Model.mapping | 5 ++ .../render/entity/model/AnimalModel.mapping | 8 +++ .../model/ArmorStandArmorEntityModel.mapping | 1 + .../model/ArmorStandEntityModel.mapping | 1 + .../entity/model/AxolotlEntityModel.mapping | 51 +++++++++++++++- .../entity/model/BatEntityModel.mapping | 34 +++++++++++ .../entity/model/BeeEntityModel.mapping | 49 ++++++++++++++++ .../entity/model/BipedEntityModel.mapping | 31 ++++++++++ .../entity/model/BlazeEntityModel.mapping | 50 ++++++++++++++++ .../entity/model/BoatEntityModel.mapping | 42 ++++++++++++++ .../render/entity/model/BookModel.mapping | 39 ++++++++++++- .../entity/model/CatEntityModel.mapping | 3 + .../entity/model/ChickenEntityModel.mapping | 36 ++++++++++++ .../entity/model/CodEntityModel.mapping | 31 ++++++++++ .../entity/model/CowEntityModel.mapping | 35 +++++++++++ .../entity/model/CreeperEntityModel.mapping | 29 ++++++++++ .../entity/model/CrossbowPosing.mapping | 1 + .../entity/model/DolphinEntityModel.mapping | 34 +++++++++++ .../model/DragonHeadEntityModel.mapping | 16 +++++ .../entity/model/ElytraEntityModel.mapping | 16 +++++ .../entity/model/EndermanEntityModel.mapping | 33 +++++++++++ .../entity/model/EndermiteEntityModel.mapping | 22 +++++++ .../render/entity/model/EntityModel.mapping | 11 ++++ .../entity/model/EntityModelPartNames.mapping | 58 +++++++++++++++++++ .../model/EvokerFangsEntityModel.mapping | 22 +++++++ .../entity/model/FoxEntityModel.mapping | 40 +++++++++++++ .../entity/model/GhastEntityModel.mapping | 40 +++++++++++++ .../entity/model/GiantEntityModel.mapping | 3 + .../entity/model/GoatEntityModel.mapping | 37 ++++++++++++ .../entity/model/GuardianEntityModel.mapping | 4 ++ .../entity/model/HoglinEntityModel.mapping | 43 ++++++++++++++ .../entity/model/HorseEntityModel.mapping | 12 ++++ .../entity/model/LeashKnotEntityModel.mapping | 14 +++++ .../entity/model/LlamaEntityModel.mapping | 38 ++++++++++++ .../entity/model/LlamaSpitEntityModel.mapping | 14 +++++ .../entity/model/MinecartEntityModel.mapping | 29 ++++++++++ .../entity/model/OcelotEntityModel.mapping | 36 ++++++++++++ .../entity/model/ParrotEntityModel.mapping | 1 + .../entity/model/PhantomEntityModel.mapping | 2 + .../entity/model/PigEntityModel.mapping | 3 + .../entity/model/PiglinEntityModel.mapping | 58 +++++++++++++++++++ .../entity/model/PlayerEntityModel.mapping | 58 +++++++++++++++++++ .../entity/model/QuadrupedEntityModel.mapping | 28 +++++++++ .../entity/model/RabbitEntityModel.mapping | 48 +++++++++++++++ .../entity/model/SalmonEntityModel.mapping | 2 + .../entity/model/ShieldEntityModel.mapping | 18 ++++++ .../model/ShulkerBulletEntityModel.mapping | 14 +++++ .../entity/model/ShulkerEntityModel.mapping | 2 + .../entity/model/SkullEntityModel.mapping | 16 +++++ .../entity/model/SnowGolemEntityModel.mapping | 1 + .../entity/model/SpiderEntityModel.mapping | 6 ++ .../entity/model/SquidEntityModel.mapping | 37 ++++++++++++ .../entity/model/StriderEntityModel.mapping | 6 ++ .../entity/model/TridentEntityModel.mapping | 25 ++++++++ .../entity/model/TurtleEntityModel.mapping | 1 + .../entity/model/VexEntityModel.mapping | 37 ++++++++++++ .../model/VillagerResemblingModel.mapping | 37 ++++++++++++ .../entity/model/WitchEntityModel.mapping | 46 +++++++++++++++ .../entity/model/WitherEntityModel.mapping | 32 ++++++++++ .../entity/model/WolfEntityModel.mapping | 3 + .../entity/passive/AxolotlBrain.mapping | 49 +++++++++++++++- .../entity/passive/AxolotlEntity.mapping | 34 +++++++++++ 62 files changed, 1527 insertions(+), 5 deletions(-) diff --git a/mappings/net/minecraft/client/model/Model.mapping b/mappings/net/minecraft/client/model/Model.mapping index 6879c7411f..76d3d8cbf4 100644 --- a/mappings/net/minecraft/client/model/Model.mapping +++ b/mappings/net/minecraft/client/model/Model.mapping @@ -1,13 +1,18 @@ CLASS net/minecraft/class_3879 net/minecraft/client/model/Model + COMMENT Represents a dynamic model which has its own render layers and custom rendering. FIELD field_21343 layerFactory Ljava/util/function/Function; METHOD (Ljava/util/function/Function;)V ARG 1 layerFactory METHOD method_23500 getLayer (Lnet/minecraft/class_2960;)Lnet/minecraft/class_1921; + COMMENT {@return the render layer for the corresponding texture} ARG 1 texture + COMMENT the texture used for the render layer METHOD method_2828 render (Lnet/minecraft/class_4587;Lnet/minecraft/class_4588;IIFFFF)V + COMMENT Renders the model. ARG 1 matrices ARG 2 vertices ARG 3 light + COMMENT the lightmap coordinates used for this model rendering ARG 4 overlay ARG 5 red ARG 6 green diff --git a/mappings/net/minecraft/client/render/entity/model/AnimalModel.mapping b/mappings/net/minecraft/client/render/entity/model/AnimalModel.mapping index 06fbb97147..d918592890 100644 --- a/mappings/net/minecraft/client/render/entity/model/AnimalModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/AnimalModel.mapping @@ -25,4 +25,12 @@ CLASS net/minecraft/class_4592 net/minecraft/client/render/entity/model/AnimalMo ARG 5 invertedChildBodyScale ARG 6 childBodyYOffset METHOD method_22946 getHeadParts ()Ljava/lang/Iterable; + METHOD method_22947 (Lnet/minecraft/class_4587;Lnet/minecraft/class_4588;IIFFFFLnet/minecraft/class_630;)V + ARG 8 bodyPart METHOD method_22948 getBodyParts ()Ljava/lang/Iterable; + METHOD method_22949 (Lnet/minecraft/class_4587;Lnet/minecraft/class_4588;IIFFFFLnet/minecraft/class_630;)V + ARG 8 headPart + METHOD method_22950 (Lnet/minecraft/class_4587;Lnet/minecraft/class_4588;IIFFFFLnet/minecraft/class_630;)V + ARG 8 bodyPart + METHOD method_22951 (Lnet/minecraft/class_4587;Lnet/minecraft/class_4588;IIFFFFLnet/minecraft/class_630;)V + ARG 8 headPart diff --git a/mappings/net/minecraft/client/render/entity/model/ArmorStandArmorEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/ArmorStandArmorEntityModel.mapping index 9becbc9f88..c0e62f3f41 100644 --- a/mappings/net/minecraft/client/render/entity/model/ArmorStandArmorEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/ArmorStandArmorEntityModel.mapping @@ -1,3 +1,4 @@ CLASS net/minecraft/class_548 net/minecraft/client/render/entity/model/ArmorStandArmorEntityModel + COMMENT Represents the armor model of an {@linkplain ArmorStandEntity}. METHOD method_32686 getTexturedModelData (Lnet/minecraft/class_5605;)Lnet/minecraft/class_5607; ARG 0 dilation diff --git a/mappings/net/minecraft/client/render/entity/model/ArmorStandEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/ArmorStandEntityModel.mapping index 5adaca80dc..6ed5a2cac3 100644 --- a/mappings/net/minecraft/client/render/entity/model/ArmorStandEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/ArmorStandEntityModel.mapping @@ -1,4 +1,5 @@ CLASS net/minecraft/class_551 net/minecraft/client/render/entity/model/ArmorStandEntityModel + COMMENT Represents the model of an {@linkplain ArmorStandEntity}. FIELD field_27391 rightBodyStick Lnet/minecraft/class_630; FIELD field_27392 leftBodyStick Lnet/minecraft/class_630; FIELD field_32445 RIGHT_BODY_STICK Ljava/lang/String; diff --git a/mappings/net/minecraft/client/render/entity/model/AxolotlEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/AxolotlEntityModel.mapping index 6675779d92..9e48077a51 100644 --- a/mappings/net/minecraft/client/render/entity/model/AxolotlEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/AxolotlEntityModel.mapping @@ -1,4 +1,44 @@ CLASS net/minecraft/class_5772 net/minecraft/client/render/entity/model/AxolotlEntityModel + COMMENT Represents the model of an {@linkplain AxolotlEntity}. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value EntityModelPartNames#BODY}Root part{@link #body}
{@value EntityModelPartNames#HEAD}{@value EntityModelPartNames#BODY}{@link #head}
{@value EntityModelPartNames#TOP_GILLS}{@value EntityModelPartNames#HEAD}{@link #topGills}
{@value EntityModelPartNames#LEFT_GILLS}{@value EntityModelPartNames#HEAD}{@link #leftGills}
{@value EntityModelPartNames#RIGHT_GILLS}{@value EntityModelPartNames#HEAD}{@link #rightGills}
{@value EntityModelPartNames#RIGHT_HIND_LEG}{@value EntityModelPartNames#BODY}{@link #rightHindLeg}
{@value EntityModelPartNames#LEFT_HIND_LEG}{@value EntityModelPartNames#BODY}{@link #leftHindLeg}
{@value EntityModelPartNames#RIGHT_FRONT_LEG}{@value EntityModelPartNames#BODY}{@link #rightFrontLeg}
{@value EntityModelPartNames#LEFT_FRONT_LEG}{@value EntityModelPartNames#BODY}{@link #leftFrontLeg}
{@value EntityModelPartNames#TAIL}{@value EntityModelPartNames#BODY}{@link #tail}
+ COMMENT
FIELD field_28373 tail Lnet/minecraft/class_630; FIELD field_28374 leftHindLeg Lnet/minecraft/class_630; FIELD field_28375 rightHindLeg Lnet/minecraft/class_630; @@ -10,14 +50,20 @@ CLASS net/minecraft/class_5772 net/minecraft/client/render/entity/model/AxolotlE FIELD field_28381 leftGills Lnet/minecraft/class_630; FIELD field_28382 rightGills Lnet/minecraft/class_630; FIELD field_32449 MOVING_IN_WATER_LEG_PITCH F + COMMENT Represents the pitch value {@value} used for the legs of the axolotl when it is moving in water. METHOD (Lnet/minecraft/class_630;)V ARG 1 root METHOD method_33291 setStandingOnGroundAngles (FF)V ARG 1 animationProgress + ARG 2 headYaw METHOD method_33292 resetAngles (Lnet/minecraft/class_5762;FF)V COMMENT Resets the angles of the axolotl model. + ARG 1 axolotl + ARG 2 headYaw + ARG 3 headPitch METHOD method_33294 setMovingOnGroundAngles (FF)V ARG 1 animationProgress + ARG 2 headYaw METHOD method_33295 setMovingInWaterAngles (FF)V ARG 1 animationProgress ARG 2 headPitch @@ -25,6 +71,7 @@ CLASS net/minecraft/class_5772 net/minecraft/client/render/entity/model/AxolotlE METHOD method_33297 setStandingInWaterAngles (F)V ARG 1 animationProgress METHOD method_33298 setPlayingDeadAngles (F)V + ARG 1 headYaw METHOD method_33299 copyLegAngles ()V COMMENT Copies and mirrors the left leg angles to the right leg angles. METHOD method_37091 lerpAngleDegrees (FF)F @@ -34,11 +81,11 @@ CLASS net/minecraft/class_5772 net/minecraft/client/render/entity/model/AxolotlE ARG 1 delta ARG 2 start ARG 3 end - METHOD method_37093 updateAnglesMap (Lnet/minecraft/class_5762;)V + METHOD method_37093 updateAnglesCache (Lnet/minecraft/class_5762;)V ARG 1 axolotl METHOD method_37094 getAngles (Lnet/minecraft/class_630;)Lnet/minecraft/class_1160; ARG 1 part - METHOD method_37095 setAngle (Lnet/minecraft/class_630;FFF)V + METHOD method_37095 setAngles (Lnet/minecraft/class_630;FFF)V ARG 1 part ARG 2 pitch ARG 3 yaw diff --git a/mappings/net/minecraft/client/render/entity/model/BatEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/BatEntityModel.mapping index aea8670954..06ce940853 100644 --- a/mappings/net/minecraft/client/render/entity/model/BatEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/BatEntityModel.mapping @@ -1,4 +1,38 @@ CLASS net/minecraft/class_553 net/minecraft/client/render/entity/model/BatEntityModel + COMMENT Represents the model of a {@linkplain BatEntity}. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value EntityModelPartNames#HEAD}{@linkplain #root Root part}{@link #head}
{@value EntityModelPartNames#RIGHT_EAR}{@value EntityModelPartNames#HEAD}
{@value EntityModelPartNames#LEFT_EAR}{@value EntityModelPartNames#HEAD}
{@value EntityModelPartNames#BODY}{@linkplain #root Root part}{@link #body}
{@value EntityModelPartNames#RIGHT_WING}{@value EntityModelPartNames#BODY}{@link #rightWing}
{@value EntityModelPartNames#RIGHT_WING_TIP}{@value EntityModelPartNames#RIGHT_WING}{@link #rightWingTip}
{@value EntityModelPartNames#LEFT_WING}{@value EntityModelPartNames#BODY}{@link #leftWing}
{@value EntityModelPartNames#LEFT_WING_TIP}{@value EntityModelPartNames#LEFT_WING}{@link #leftWingTip}
+ COMMENT
FIELD field_27393 root Lnet/minecraft/class_630; FIELD field_3319 rightWingTip Lnet/minecraft/class_630; FIELD field_3320 leftWing Lnet/minecraft/class_630; diff --git a/mappings/net/minecraft/client/render/entity/model/BeeEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/BeeEntityModel.mapping index ec497038d0..55878d3e07 100644 --- a/mappings/net/minecraft/client/render/entity/model/BeeEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/BeeEntityModel.mapping @@ -1,4 +1,44 @@ CLASS net/minecraft/class_4495 net/minecraft/client/render/entity/model/BeeEntityModel + COMMENT Represents the model of a {@linkplain BeeEntity}. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value #BONE}Root part{@link #bone}
{@value EntityModelPartNames#BODY}{@value #BONE}
{@value #STINGER}{@value EntityModelPartNames#BODY}{@link #stinger}
{@value #LEFT_ANTENNA}{@value EntityModelPartNames#BODY}{@link #leftAntenna}
{@value #RIGHT_ANTENNA}{@value EntityModelPartNames#BODY}{@link #rightAntenna}
{@value EntityModelPartNames#RIGHT_WING}{@value #BONE}{@link #rightWing}
{@value EntityModelPartNames#LEFT_WING}{@value #BONE}{@link #leftWing}
{@value #FRONT_LEGS}{@value #BONE}{@link #frontLegs}
{@value #MIDDLE_LEGS}{@value #BONE}{@link #middleLegs}
{@value #BACK_LEGS}{@value #BONE}{@link #backLegs}
+ COMMENT
FIELD field_20504 bone Lnet/minecraft/class_630; FIELD field_20506 rightWing Lnet/minecraft/class_630; FIELD field_20507 leftWing Lnet/minecraft/class_630; @@ -11,12 +51,21 @@ CLASS net/minecraft/class_4495 net/minecraft/client/render/entity/model/BeeEntit FIELD field_20514 bodyPitch F FIELD field_32450 BONE_BASE_Y_PIVOT F FIELD field_32451 BONE Ljava/lang/String; + COMMENT The key of the bone model part, whose value is {@value}. + COMMENT + COMMENT

The bone is an invisible model part which is used to globally control the model. FIELD field_32452 STINGER Ljava/lang/String; + COMMENT The key of the stinger model part, whose value is {@value}. FIELD field_32453 LEFT_ANTENNA Ljava/lang/String; + COMMENT The key of the left antenna model part, whose value is {@value}. FIELD field_32454 RIGHT_ANTENNA Ljava/lang/String; + COMMENT The key of the right antenna model part, whose value is {@value}. FIELD field_32455 FRONT_LEGS Ljava/lang/String; + COMMENT The key of the front legs model part, whose value is {@value}. FIELD field_32456 MIDDLE_LEGS Ljava/lang/String; + COMMENT The key of the middle legs model part, whose value is {@value}. FIELD field_32457 BACK_LEGS Ljava/lang/String; + COMMENT The key of the back legs model part, whose value is {@value}. METHOD (Lnet/minecraft/class_630;)V ARG 1 root METHOD method_31981 getTexturedModelData ()Lnet/minecraft/class_5607; diff --git a/mappings/net/minecraft/client/render/entity/model/BipedEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/BipedEntityModel.mapping index e4eda57f7c..8f71cf8379 100644 --- a/mappings/net/minecraft/client/render/entity/model/BipedEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/BipedEntityModel.mapping @@ -1,4 +1,35 @@ CLASS net/minecraft/class_572 net/minecraft/client/render/entity/model/BipedEntityModel + COMMENT Represents the model of a biped living entity. + COMMENT + COMMENT

+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value EntityModelPartNames#HAT}Root part{@link #hat}
{@value EntityModelPartNames#HEAD}Root part{@link #head}
{@value EntityModelPartNames#BODY}Root part{@link #body}
{@value EntityModelPartNames#RIGHT_ARM}Root part{@link #rightArm}
{@value EntityModelPartNames#LEFT_ARM}Root part{@link #leftArm}
{@value EntityModelPartNames#RIGHT_LEG}Root part{@link #rightLeg}
{@value EntityModelPartNames#LEFT_LEG}Root part{@link #leftLeg}
+ COMMENT
FIELD field_27433 leftArm Lnet/minecraft/class_630; FIELD field_3391 body Lnet/minecraft/class_630; FIELD field_3392 rightLeg Lnet/minecraft/class_630; diff --git a/mappings/net/minecraft/client/render/entity/model/BlazeEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/BlazeEntityModel.mapping index 26ec759d7a..c16cd6f1db 100644 --- a/mappings/net/minecraft/client/render/entity/model/BlazeEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/BlazeEntityModel.mapping @@ -1,4 +1,54 @@ CLASS net/minecraft/class_555 net/minecraft/client/render/entity/model/BlazeEntityModel + COMMENT Represents the model of a blaze-like entity. + COMMENT This model is not tied to a specific entity. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value EntityModelPartNames#HEAD}{@linkplain #root Root part}{@link #head}
{@code part0}{@linkplain #root Root part}{@link #rods rods[0]}
{@code part1}{@linkplain #root Root part}{@link #rods rods[1]}
{@code part2}{@linkplain #root Root part}{@link #rods rods[2]}
{@code part3}{@linkplain #root Root part}{@link #rods rods[3]}
{@code part4}{@linkplain #root Root part}{@link #rods rods[4]}
{@code part5}{@linkplain #root Root part}{@link #rods rods[5]}
{@code part6}{@linkplain #root Root part}{@link #rods rods[6]}
{@code part7}{@linkplain #root Root part}{@link #rods rods[7]}
{@code part8}{@linkplain #root Root part}{@link #rods rods[8]}
{@code part9}{@linkplain #root Root part}{@link #rods rods[9]}
{@code part10}{@linkplain #root Root part}{@link #rods rods[10]}
{@code part11}{@linkplain #root Root part}{@link #rods rods[11]}
+ COMMENT
FIELD field_27394 root Lnet/minecraft/class_630; FIELD field_27395 head Lnet/minecraft/class_630; FIELD field_3328 rods [Lnet/minecraft/class_630; diff --git a/mappings/net/minecraft/client/render/entity/model/BoatEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/BoatEntityModel.mapping index f97546915d..563f3cdbc7 100644 --- a/mappings/net/minecraft/client/render/entity/model/BoatEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/BoatEntityModel.mapping @@ -1,15 +1,57 @@ CLASS net/minecraft/class_554 net/minecraft/client/render/entity/model/BoatEntityModel + COMMENT Represents the model of a {@linkplain BoatEntity}. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value #BOTTOM}Root part
{@value #BACK}Root part
{@value #FRONT}Root part
{@value #RIGHT}Root part
{@value #LEFT}Root part
{@value #LEFT_PADDLE}Root part{@link #leftPaddle}
{@value #RIGHT_PADDLE}Root part{@link #rightPaddle}
{@value #WATER_PATCH}Root part{@link #waterPatch}
+ COMMENT
FIELD field_20922 parts Lcom/google/common/collect/ImmutableList; FIELD field_27396 leftPaddle Lnet/minecraft/class_630; FIELD field_27397 rightPaddle Lnet/minecraft/class_630; FIELD field_32458 LEFT_PADDLE Ljava/lang/String; + COMMENT The key of the left paddle model part, whose value is {@value}. FIELD field_32459 RIGHT_PADDLE Ljava/lang/String; + COMMENT The key of the right paddle model part, whose value is {@value}. FIELD field_32460 WATER_PATCH Ljava/lang/String; + COMMENT The key of the water patch model part, whose value is {@value}. FIELD field_32461 BOTTOM Ljava/lang/String; + COMMENT The key of the bottom model part, whose value is {@value}. FIELD field_32462 BACK Ljava/lang/String; + COMMENT The key of the back model part, whose value is {@value}. FIELD field_32463 FRONT Ljava/lang/String; + COMMENT The key of the front model part, whose value is {@value}. FIELD field_32464 RIGHT Ljava/lang/String; + COMMENT The key of the right model part, whose value is {@value}. FIELD field_32465 LEFT Ljava/lang/String; + COMMENT The key of the left model part, whose value is {@value}. FIELD field_3326 waterPatch Lnet/minecraft/class_630; METHOD (Lnet/minecraft/class_630;)V ARG 1 root diff --git a/mappings/net/minecraft/client/render/entity/model/BookModel.mapping b/mappings/net/minecraft/client/render/entity/model/BookModel.mapping index 9a79260820..89a3c69713 100644 --- a/mappings/net/minecraft/client/render/entity/model/BookModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/BookModel.mapping @@ -1,15 +1,50 @@ CLASS net/minecraft/class_557 net/minecraft/client/render/entity/model/BookModel + COMMENT Represents the model of the enchanting table's book. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value EntityModelPartNames#LEFT_LID}{@linkplain #root Root part}{@link #leftCover}
{@value EntityModelPartNames#RIGHT_LID}{@linkplain #root Root part}{@link #rightCover}
{@code seam}{@linkplain #root Root part}
{@value #LEFT_PAGES}{@linkplain #root Root part}{@link #leftPages}
{@value #RIGHT_PAGES}{@linkplain #root Root part}{@link #rightPages}
{@value #FLIP_PAGE1}{@linkplain #root Root part}{@link #leftFlippingPage}
{@value #FLIP_PAGE2}{@linkplain #root Root part}{@link #rightFlippingPage}
+ COMMENT
FIELD field_27398 root Lnet/minecraft/class_630; FIELD field_32466 LEFT_PAGES Ljava/lang/String; + COMMENT The key of the left pages model part, whose value is {@value}. FIELD field_32467 RIGHT_PAGES Ljava/lang/String; + COMMENT The key of the right pages model part, whose value is {@value}. FIELD field_32468 FLIP_PAGE1 Ljava/lang/String; + COMMENT The key of the left flipping page model part, whose value is {@value}. FIELD field_32469 FLIP_PAGE2 Ljava/lang/String; - FIELD field_3334 leftPage Lnet/minecraft/class_630; + COMMENT The key of the right flipping page model part, whose value is {@value}. + FIELD field_3334 leftFlippingPage Lnet/minecraft/class_630; FIELD field_3335 rightPages Lnet/minecraft/class_630; FIELD field_3336 leftCover Lnet/minecraft/class_630; FIELD field_3337 leftPages Lnet/minecraft/class_630; FIELD field_3338 rightCover Lnet/minecraft/class_630; - FIELD field_3339 rightPage Lnet/minecraft/class_630; + FIELD field_3339 rightFlippingPage Lnet/minecraft/class_630; METHOD (Lnet/minecraft/class_630;)V ARG 1 root METHOD method_17073 setPageAngles (FFFF)V diff --git a/mappings/net/minecraft/client/render/entity/model/CatEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/CatEntityModel.mapping index aadd0c127d..91610cfb16 100644 --- a/mappings/net/minecraft/client/render/entity/model/CatEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/CatEntityModel.mapping @@ -1,4 +1,7 @@ CLASS net/minecraft/class_3680 net/minecraft/client/render/entity/model/CatEntityModel + COMMENT Represents the model of a {@linkplain CatEntity}. + COMMENT + COMMENT

Inherits the {@link OcelotEntityModel}. FIELD field_16243 headDownAnimation F FIELD field_16244 tailCurlAnimation F FIELD field_16245 sleepAnimation F diff --git a/mappings/net/minecraft/client/render/entity/model/ChickenEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/ChickenEntityModel.mapping index 77bdfd4f5a..8a3a027a0c 100644 --- a/mappings/net/minecraft/client/render/entity/model/ChickenEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/ChickenEntityModel.mapping @@ -1,9 +1,45 @@ CLASS net/minecraft/class_558 net/minecraft/client/render/entity/model/ChickenEntityModel + COMMENT Represents the model of a chicken-like entity. + COMMENT This model is not tied to a specific entity. + COMMENT + COMMENT

+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value EntityModelPartNames#HEAD}Root part{@link #head}
{@value EntityModelPartNames#BEAK}Root part{@link #beak}
{@value #RED_THING}Root part{@link #wattle}
{@value EntityModelPartNames#BODY}Root part{@link #body}
{@value EntityModelPartNames#RIGHT_LEG}Root part{@link #rightLeg}
{@value EntityModelPartNames#LEFT_LEG}Root part{@link #leftLeg}
{@value EntityModelPartNames#RIGHT_WING}Root part{@link #rightWing}
{@value EntityModelPartNames#LEFT_WING}Root part{@link #leftWing}
+ COMMENT
FIELD field_27401 rightLeg Lnet/minecraft/class_630; FIELD field_27402 leftLeg Lnet/minecraft/class_630; FIELD field_27403 rightWing Lnet/minecraft/class_630; FIELD field_27404 leftWing Lnet/minecraft/class_630; FIELD field_32471 RED_THING Ljava/lang/String; + COMMENT The key of the wattle model part, whose value is {@value}. FIELD field_3340 beak Lnet/minecraft/class_630; FIELD field_3342 wattle Lnet/minecraft/class_630; FIELD field_3344 head Lnet/minecraft/class_630; diff --git a/mappings/net/minecraft/client/render/entity/model/CodEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/CodEntityModel.mapping index e01db9a663..a4e0387d72 100644 --- a/mappings/net/minecraft/client/render/entity/model/CodEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/CodEntityModel.mapping @@ -1,4 +1,35 @@ CLASS net/minecraft/class_561 net/minecraft/client/render/entity/model/CodEntityModel + COMMENT Represents the model of a cod-like entity. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value EntityModelPartNames#BODY}{@linkplain #root Root part}
{@value EntityModelPartNames#HEAD}{@linkplain #root Root part}
{@value EntityModelPartNames#NOSE}{@linkplain #root Root part}
{@value EntityModelPartNames#RIGHT_FIN}{@linkplain #root Root part}
{@value EntityModelPartNames#LEFT_FIN}{@linkplain #root Root part}
{@value EntityModelPartNames#TAIL_FIN}{@linkplain #root Root part}{@link #tailFin}
{@value EntityModelPartNames#TOP_FIN}{@linkplain #root Root part}
+ COMMENT
FIELD field_27405 root Lnet/minecraft/class_630; FIELD field_3350 tailFin Lnet/minecraft/class_630; METHOD (Lnet/minecraft/class_630;)V diff --git a/mappings/net/minecraft/client/render/entity/model/CowEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/CowEntityModel.mapping index bf73181753..65d45b7903 100644 --- a/mappings/net/minecraft/client/render/entity/model/CowEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/CowEntityModel.mapping @@ -1,4 +1,39 @@ CLASS net/minecraft/class_560 net/minecraft/client/render/entity/model/CowEntityModel + COMMENT Represents the model of a cow-like entity. + COMMENT This model is not tied to a specific entity. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value EntityModelPartNames#HEAD}Root part{@link #head}
{@value EntityModelPartNames#RIGHT_HORN}{@value EntityModelPartNames#HEAD}
{@value EntityModelPartNames#LEFT_HORN}{@value EntityModelPartNames#HEAD}
{@value EntityModelPartNames#BODY}Root part{@link #body}
{@value EntityModelPartNames#RIGHT_HIND_LEG}Root part{@link #rightHindLeg}
{@value EntityModelPartNames#LEFT_HIND_LEG}Root part{@link #leftHindLeg}
{@value EntityModelPartNames#RIGHT_FRONT_LEG}Root part{@link #rightFrontLeg}
{@value EntityModelPartNames#LEFT_FRONT_LEG}Root part{@link #leftFrontLeg}
+ COMMENT
METHOD (Lnet/minecraft/class_630;)V ARG 1 root METHOD method_2800 getHead ()Lnet/minecraft/class_630; diff --git a/mappings/net/minecraft/client/render/entity/model/CreeperEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/CreeperEntityModel.mapping index 852f4da66b..ee7733d0c3 100644 --- a/mappings/net/minecraft/client/render/entity/model/CreeperEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/CreeperEntityModel.mapping @@ -1,4 +1,33 @@ CLASS net/minecraft/class_562 net/minecraft/client/render/entity/model/CreeperEntityModel + COMMENT Represents the model of a creeper-like entity. + COMMENT This model is not tied to a specific entity. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value EntityModelPartNames#HEAD}{@linkplain #root Root part}{@link #head}
{@value EntityModelPartNames#BODY}{@linkplain #root Root part}
{@value EntityModelPartNames#RIGHT_HIND_LEG}{@linkplain #root Root part}{@link #rightHindLeg}
{@value EntityModelPartNames#LEFT_HIND_LEG}{@linkplain #root Root part}{@link #leftHindLeg}
{@value EntityModelPartNames#RIGHT_FRONT_LEG}{@linkplain #root Root part}{@link #rightFrontLeg}
{@value EntityModelPartNames#LEFT_FRONT_LEG}{@linkplain #root Root part}{@link #leftFrontLeg}
+ COMMENT
FIELD field_27406 root Lnet/minecraft/class_630; FIELD field_27407 leftHindLeg Lnet/minecraft/class_630; FIELD field_27408 rightHindLeg Lnet/minecraft/class_630; diff --git a/mappings/net/minecraft/client/render/entity/model/CrossbowPosing.mapping b/mappings/net/minecraft/client/render/entity/model/CrossbowPosing.mapping index eb9eebefdc..6511eab2a9 100644 --- a/mappings/net/minecraft/client/render/entity/model/CrossbowPosing.mapping +++ b/mappings/net/minecraft/client/render/entity/model/CrossbowPosing.mapping @@ -1,4 +1,5 @@ CLASS net/minecraft/class_4896 net/minecraft/client/render/entity/model/CrossbowPosing + COMMENT Utility class to help posing when a crossbow is involved. METHOD method_25446 charge (Lnet/minecraft/class_630;Lnet/minecraft/class_630;Lnet/minecraft/class_1309;Z)V ARG 0 holdingArm ARG 1 pullingArm diff --git a/mappings/net/minecraft/client/render/entity/model/DolphinEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/DolphinEntityModel.mapping index 757887b3b6..745e90cd9d 100644 --- a/mappings/net/minecraft/client/render/entity/model/DolphinEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/DolphinEntityModel.mapping @@ -1,4 +1,38 @@ CLASS net/minecraft/class_889 net/minecraft/client/render/entity/model/DolphinEntityModel + COMMENT Represents the model of a dolphin-like entity. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value EntityModelPartNames#BODY}{@linkplain #root Root part}{@link #body}
{@value EntityModelPartNames#BACK_FIN}{@value EntityModelPartNames#BODY}
{@value EntityModelPartNames#LEFT_FIN}{@value EntityModelPartNames#BODY}
{@value EntityModelPartNames#RIGHT_FIN}{@value EntityModelPartNames#BODY}
{@value EntityModelPartNames#TAIL}{@value EntityModelPartNames#BODY}{@link #tail}
{@value EntityModelPartNames#TAIL_FIN}{@value EntityModelPartNames#TAIL}{@link #tailFin}
{@value EntityModelPartNames#HEAD}{@value EntityModelPartNames#BODY}
{@value EntityModelPartNames#NOSE}{@value EntityModelPartNames#HEAD}
+ COMMENT
FIELD field_27411 root Lnet/minecraft/class_630; FIELD field_4655 tailFin Lnet/minecraft/class_630; FIELD field_4657 tail Lnet/minecraft/class_630; diff --git a/mappings/net/minecraft/client/render/entity/model/DragonHeadEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/DragonHeadEntityModel.mapping index 9974d6680b..b206c3f957 100644 --- a/mappings/net/minecraft/client/render/entity/model/DragonHeadEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/DragonHeadEntityModel.mapping @@ -1,4 +1,20 @@ CLASS net/minecraft/class_626 net/minecraft/client/render/entity/model/DragonHeadEntityModel + COMMENT Represents the model of the dragon head. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value EntityModelPartNames#HEAD}Root part{@link #head}
{@value EntityModelPartNames#JAW}{@value EntityModelPartNames#HEAD}{@link #jaw}
+ COMMENT
FIELD field_3638 head Lnet/minecraft/class_630; FIELD field_3639 jaw Lnet/minecraft/class_630; METHOD (Lnet/minecraft/class_630;)V diff --git a/mappings/net/minecraft/client/render/entity/model/ElytraEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/ElytraEntityModel.mapping index 088856b24c..aadade0799 100644 --- a/mappings/net/minecraft/client/render/entity/model/ElytraEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/ElytraEntityModel.mapping @@ -1,4 +1,20 @@ CLASS net/minecraft/class_563 net/minecraft/client/render/entity/model/ElytraEntityModel + COMMENT Represents the model of a worn elytra. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value EntityModelPartNames#LEFT_WING}Root part{@link #leftWing}
{@value EntityModelPartNames#RIGHT_WING}Root part{@link #rightWing}
+ COMMENT
FIELD field_27412 rightWing Lnet/minecraft/class_630; FIELD field_3365 leftWing Lnet/minecraft/class_630; METHOD (Lnet/minecraft/class_630;)V diff --git a/mappings/net/minecraft/client/render/entity/model/EndermanEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/EndermanEntityModel.mapping index 22859ae940..ba92c49494 100644 --- a/mappings/net/minecraft/client/render/entity/model/EndermanEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/EndermanEntityModel.mapping @@ -1,4 +1,37 @@ CLASS net/minecraft/class_566 net/minecraft/client/render/entity/model/EndermanEntityModel + COMMENT Represents the model of an enderman-like living entity. + COMMENT + COMMENT

The model parts are the same as a {@link BipedEntityModel} but with different proportions. + COMMENT + COMMENT

+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value EntityModelPartNames#HAT}Root part{@link #hat}
{@value EntityModelPartNames#HEAD}Root part{@link #head}
{@value EntityModelPartNames#BODY}Root part{@link #body}
{@value EntityModelPartNames#RIGHT_ARM}Root part{@link #rightArm}
{@value EntityModelPartNames#LEFT_ARM}Root part{@link #leftArm}
{@value EntityModelPartNames#RIGHT_LEG}Root part{@link #rightLeg}
{@value EntityModelPartNames#LEFT_LEG}Root part{@link #leftLeg}
+ COMMENT
FIELD field_3370 angry Z FIELD field_3371 carryingBlock Z METHOD method_31995 getTexturedModelData ()Lnet/minecraft/class_5607; diff --git a/mappings/net/minecraft/client/render/entity/model/EndermiteEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/EndermiteEntityModel.mapping index a59b15f5b8..8f965e93bb 100644 --- a/mappings/net/minecraft/client/render/entity/model/EndermiteEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/EndermiteEntityModel.mapping @@ -1,4 +1,26 @@ CLASS net/minecraft/class_565 net/minecraft/client/render/entity/model/EndermiteEntityModel + COMMENT Represents the model of an endermite-like entity. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@code segment0}{@linkplain #root Root part}{@link #bodySegments bodySegments[0]}
{@code segment1}{@linkplain #root Root part}{@link #bodySegments bodySegments[1]}
{@code segment2}{@linkplain #root Root part}{@link #bodySegments bodySegments[2]}
{@code segment3}{@linkplain #root Root part}{@link #bodySegments bodySegments[3]}
+ COMMENT
FIELD field_27413 root Lnet/minecraft/class_630; FIELD field_32473 BODY_SEGMENTS_COUNT I FIELD field_3366 SEGMENT_DIMENSIONS [[I diff --git a/mappings/net/minecraft/client/render/entity/model/EntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/EntityModel.mapping index 679e02036a..98dc68c896 100644 --- a/mappings/net/minecraft/client/render/entity/model/EntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/EntityModel.mapping @@ -1,4 +1,15 @@ CLASS net/minecraft/class_583 net/minecraft/client/render/entity/model/EntityModel + COMMENT Represents the model of an {@linkplain Entity}. + COMMENT + COMMENT

An instance of an entity model will not define the model data, + COMMENT but will animate it. + COMMENT Model data may be defined in a static method, most of the children classes will + COMMENT have a {@code getTexturedModelData} method. + COMMENT The model data is usually passed in the constructor of the entity model. + COMMENT + COMMENT

Some children classes contain a model parts table, those tables contains + COMMENT the model parts for the base model. In a modded context the tables may be + COMMENT inaccurate. Model parts with an associated field are required. FIELD field_3447 handSwingProgress F FIELD field_3448 child Z FIELD field_3449 riding Z diff --git a/mappings/net/minecraft/client/render/entity/model/EntityModelPartNames.mapping b/mappings/net/minecraft/client/render/entity/model/EntityModelPartNames.mapping index 97cf4dd9ba..bca8264b78 100644 --- a/mappings/net/minecraft/client/render/entity/model/EntityModelPartNames.mapping +++ b/mappings/net/minecraft/client/render/entity/model/EntityModelPartNames.mapping @@ -1,58 +1,116 @@ CLASS net/minecraft/class_6230 net/minecraft/client/render/entity/model/EntityModelPartNames + COMMENT Contains common model part names used in {@linkplain EntityModel entity models}. FIELD field_32583 RIGHT_FRONT_FOOT Ljava/lang/String; + COMMENT The key of a right front foot model part, whose value is {@value}. FIELD field_32584 LEFT_HIND_LEG_TIP Ljava/lang/String; + COMMENT The key of a left hind leg tip model part, whose value is {@value}. FIELD field_32585 RIGHT_HIND_LEG_TIP Ljava/lang/String; + COMMENT The key of a right hind leg tip model part, whose value is {@value}. FIELD field_32586 LEFT_FRONT_LEG_TIP Ljava/lang/String; + COMMENT The key of a left front leg tip model part, whose value is {@value}. FIELD field_32587 RIGHT_FRONT_LEG_TIP Ljava/lang/String; + COMMENT The key of a right front leg tip model part, whose value is {@value}. FIELD field_32588 LEFT_LID Ljava/lang/String; + COMMENT The key of a left lid model part, whose value is {@value}. FIELD field_32589 RIGHT_LID Ljava/lang/String; + COMMENT The key of a right lid model part, whose value is {@value}. FIELD field_32590 LEFT_CHEST Ljava/lang/String; + COMMENT The key of a left chest model part, whose value is {@value}. FIELD field_32591 RIGHT_CHEST Ljava/lang/String; + COMMENT The key of a right chest model part, whose value is {@value}. FIELD field_32592 LEFT_HORN Ljava/lang/String; + COMMENT The key of a left horn model part, whose value is {@value}. FIELD field_32593 RIGHT_HORN Ljava/lang/String; + COMMENT The key of a right horn model part, whose value is {@value}. FIELD field_32594 LEFT_EYE Ljava/lang/String; + COMMENT The key of a left eye model part, whose value is {@value}. FIELD field_32595 RIGHT_EYE Ljava/lang/String; + COMMENT The key of a right eye model part, whose value is {@value}. FIELD field_32596 JAW Ljava/lang/String; + COMMENT The key of a jaw model part, whose value is {@value}. FIELD field_32597 NOSE Ljava/lang/String; + COMMENT The key of a nose model part, whose value is {@value}. FIELD field_32598 ARMS Ljava/lang/String; + COMMENT The key of an arms model part, whose value is {@value}. FIELD field_32599 TAIL Ljava/lang/String; + COMMENT The key of a tail model part, whose value is {@value}. FIELD field_32600 CUBE Ljava/lang/String; + COMMENT The key of a cube model part, whose value is {@value}. FIELD field_32601 BEAK Ljava/lang/String; + COMMENT The key of a beak model part, whose value is {@value}. FIELD field_32602 BACK_FIN Ljava/lang/String; + COMMENT The key of a back fin model part, whose value is {@value}. FIELD field_32603 MANE Ljava/lang/String; + COMMENT The key of a mane model part, whose value is {@value}. FIELD field_32604 NECK Ljava/lang/String; + COMMENT The key of a neck model part, whose value is {@value}. FIELD field_32605 MOUTH Ljava/lang/String; + COMMENT The key of a mouth model part, whose value is {@value}. FIELD field_32606 HEAD Ljava/lang/String; + COMMENT The key of a head model part, whose value is {@value}. FIELD field_32607 HAT Ljava/lang/String; + COMMENT The key of a hat model part, whose value is {@value}. FIELD field_32608 BODY Ljava/lang/String; + COMMENT The key of a body model part, whose value is {@value}. FIELD field_32609 LEFT_FIN Ljava/lang/String; + COMMENT The key of a left fin model part, whose value is {@value}. FIELD field_32610 HAT_RIM Ljava/lang/String; + COMMENT The key of a hat rim model part, whose value is {@value}. FIELD field_32611 JACKET Ljava/lang/String; + COMMENT The key of a jacket model part, whose value is {@value}. FIELD field_32612 TOP_GILLS Ljava/lang/String; + COMMENT The key of a top gills model part, whose value is {@value}. FIELD field_32613 LEFT_GILLS Ljava/lang/String; + COMMENT The key of a left gills model part, whose value is {@value}. FIELD field_32614 RIGHT_GILLS Ljava/lang/String; + COMMENT The key of a right gills model part, whose value is {@value}. FIELD field_32615 RIGHT_FIN Ljava/lang/String; + COMMENT The key of a right fin model part, whose value is {@value}. FIELD field_32616 TOP_FIN Ljava/lang/String; + COMMENT The key of a top fin model part, whose value is {@value}. FIELD field_32617 BOTTOM_FIN Ljava/lang/String; + COMMENT The key of a bottom fin model part, whose value is {@value}. FIELD field_32618 TAIL_FIN Ljava/lang/String; + COMMENT The key of a tail fin model part, whose value is {@value}. FIELD field_32619 LEFT_BLUE_FIN Ljava/lang/String; + COMMENT The key of a left blue fin model part, whose value is {@value}. FIELD field_32620 RIGHT_BLUE_FIN Ljava/lang/String; + COMMENT The key of a right blue fin model part, whose value is {@value}. FIELD field_32621 LEFT_ARM Ljava/lang/String; + COMMENT The key of a left arm model part, whose value is {@value}. FIELD field_32622 RIGHT_ARM Ljava/lang/String; + COMMENT The key of a right arm model part, whose value is {@value}. FIELD field_32623 LEFT_WING Ljava/lang/String; + COMMENT The key of a left wing model part, whose value is {@value}. FIELD field_32624 RIGHT_WING Ljava/lang/String; + COMMENT The key of a right wing model part, whose value is {@value}. FIELD field_32625 LEFT_WING_BASE Ljava/lang/String; + COMMENT The key of a left wing base model part, whose value is {@value}. FIELD field_32626 RIGHT_WING_BASE Ljava/lang/String; + COMMENT The key of a right wing base model part, whose value is {@value}. FIELD field_32627 LEFT_WING_TIP Ljava/lang/String; + COMMENT The key of a left wing tip model part, whose value is {@value}. FIELD field_32628 RIGHT_WING_TIP Ljava/lang/String; + COMMENT The key of a right wing tip model part, whose value is {@value}. FIELD field_32629 LEFT_EAR Ljava/lang/String; + COMMENT The key of a left ear model part, whose value is {@value}. FIELD field_32630 RIGHT_EAR Ljava/lang/String; + COMMENT The key of a right ear model part, whose value is {@value}. FIELD field_32631 LEFT_LEG Ljava/lang/String; + COMMENT The key of a left leg model part, whose value is {@value}. FIELD field_32632 RIGHT_LEG Ljava/lang/String; + COMMENT The key of a right leg model part, whose value is {@value}. FIELD field_32633 LEFT_HIND_LEG Ljava/lang/String; + COMMENT The key of a left hind leg model part, whose value is {@value}. FIELD field_32634 RIGHT_HIND_LEG Ljava/lang/String; + COMMENT The key of a right hind leg model part, whose value is {@value}. FIELD field_32635 LEFT_FRONT_LEG Ljava/lang/String; + COMMENT The key of a left front leg model part, whose value is {@value}. FIELD field_32636 RIGHT_FRONT_LEG Ljava/lang/String; + COMMENT The key of a right front leg model part, whose value is {@value}. FIELD field_32637 LEFT_HIND_FOOT Ljava/lang/String; + COMMENT The key of a left hind foot model part, whose value is {@value}. FIELD field_32638 RIGHT_HIND_FOOT Ljava/lang/String; + COMMENT The key of a right hind foot model part, whose value is {@value}. FIELD field_32639 LEFT_FRONT_FOOT Ljava/lang/String; + COMMENT The key of a left front foot model part, whose value is {@value}. diff --git a/mappings/net/minecraft/client/render/entity/model/EvokerFangsEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/EvokerFangsEntityModel.mapping index 3a873c9b4c..2e07facea9 100644 --- a/mappings/net/minecraft/client/render/entity/model/EvokerFangsEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/EvokerFangsEntityModel.mapping @@ -1,8 +1,30 @@ CLASS net/minecraft/class_568 net/minecraft/client/render/entity/model/EvokerFangsEntityModel + COMMENT Represents the model of an evoker-fangs-like entity. + COMMENT + COMMENT

+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value #BASE}{@linkplain #root Root part}{@link #base}
{@value #UPPER_JAW}{@linkplain #root Root part}{@link #upperJaw}
{@value #LOWER_JAW}{@linkplain #root Root part}{@link #lowerJaw}
+ COMMENT
FIELD field_27414 root Lnet/minecraft/class_630; FIELD field_32474 BASE Ljava/lang/String; + COMMENT The key of the base model part, whose value is {@value}. FIELD field_32475 UPPER_JAW Ljava/lang/String; + COMMENT The key of the upper jaw model part, whose value is {@value}. FIELD field_32476 LOWER_JAW Ljava/lang/String; + COMMENT The key of the lower jaw model part, whose value is {@value}. FIELD field_3374 base Lnet/minecraft/class_630; FIELD field_3375 lowerJaw Lnet/minecraft/class_630; FIELD field_3376 upperJaw Lnet/minecraft/class_630; diff --git a/mappings/net/minecraft/client/render/entity/model/FoxEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/FoxEntityModel.mapping index d544f8b569..49dbb51d34 100644 --- a/mappings/net/minecraft/client/render/entity/model/FoxEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/FoxEntityModel.mapping @@ -1,4 +1,44 @@ CLASS net/minecraft/class_4041 net/minecraft/client/render/entity/model/FoxEntityModel + COMMENT Represents the model of a {@linkplain FoxEntity}. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value EntityModelPartNames#HEAD}Root part{@link #head}
{@value EntityModelPartNames#RIGHT_EAR}{@value EntityModelPartNames#HEAD}
{@value EntityModelPartNames#LEFT_EAR}{@value EntityModelPartNames#HEAD}
{@value EntityModelPartNames#NOSE}{@value EntityModelPartNames#HEAD}
{@value EntityModelPartNames#BODY}Root part{@link #body}
{@value EntityModelPartNames#TAIL}{@value EntityModelPartNames#BODY}{@link #tail}
{@value EntityModelPartNames#RIGHT_HIND_LEG}Root part{@link #rightHindLeg}
{@value EntityModelPartNames#LEFT_HIND_LEG}Root part{@link #leftHindLeg}
{@value EntityModelPartNames#RIGHT_FRONT_LEG}Root part{@link #rightFrontLeg}
{@value EntityModelPartNames#LEFT_FRONT_LEG}Root part{@link #leftFrontLeg}
+ COMMENT
FIELD field_18015 head Lnet/minecraft/class_630; FIELD field_18019 body Lnet/minecraft/class_630; FIELD field_18024 tail Lnet/minecraft/class_630; diff --git a/mappings/net/minecraft/client/render/entity/model/GhastEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/GhastEntityModel.mapping index 49dc06e258..a16e1a53a3 100644 --- a/mappings/net/minecraft/client/render/entity/model/GhastEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/GhastEntityModel.mapping @@ -1,4 +1,44 @@ CLASS net/minecraft/class_567 net/minecraft/client/render/entity/model/GhastEntityModel + COMMENT Represents the model of a ghast-like entity. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value EntityModelPartNames#BODY}{@linkplain #root Root part}
{@code tentacle0}{@linkplain #root Root part}{@link #tentacles tentacles[0]}
{@code tentacle1}{@linkplain #root Root part}{@link #tentacles tentacles[1]}
{@code tentacle2}{@linkplain #root Root part}{@link #tentacles tentacles[2]}
{@code tentacle3}{@linkplain #root Root part}{@link #tentacles tentacles[3]}
{@code tentacle4}{@linkplain #root Root part}{@link #tentacles tentacles[4]}
{@code tentacle5}{@linkplain #root Root part}{@link #tentacles tentacles[5]}
{@code tentacle6}{@linkplain #root Root part}{@link #tentacles tentacles[6]}
{@code tentacle7}{@linkplain #root Root part}{@link #tentacles tentacles[7]}
{@code tentacle8}{@linkplain #root Root part}{@link #tentacles tentacles[8]}
+ COMMENT
FIELD field_27419 root Lnet/minecraft/class_630; FIELD field_3372 tentacles [Lnet/minecraft/class_630; METHOD (Lnet/minecraft/class_630;)V diff --git a/mappings/net/minecraft/client/render/entity/model/GiantEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/GiantEntityModel.mapping index 309e292f38..b00bc0ceac 100644 --- a/mappings/net/minecraft/client/render/entity/model/GiantEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/GiantEntityModel.mapping @@ -1 +1,4 @@ CLASS net/minecraft/class_3969 net/minecraft/client/render/entity/model/GiantEntityModel + COMMENT Represents the model of a {@linkplain GiantEntity}. + COMMENT + COMMENT

Inherits the model of {@link AbstractZombieModel}. diff --git a/mappings/net/minecraft/client/render/entity/model/GoatEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/GoatEntityModel.mapping index 2c50f4027a..835f11d6a5 100644 --- a/mappings/net/minecraft/client/render/entity/model/GoatEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/GoatEntityModel.mapping @@ -1,4 +1,41 @@ CLASS net/minecraft/class_6227 net/minecraft/client/render/entity/model/GoatEntityModel + COMMENT Represents the model of a {@linkplain GoatEntity}. + COMMENT + COMMENT

+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value EntityModelPartNames#HEAD}Root part{@link #head}
{@value EntityModelPartNames#LEFT_HORN}{@value EntityModelPartNames#HEAD}
{@value EntityModelPartNames#RIGHT_HORN}{@value EntityModelPartNames#HEAD}
{@value EntityModelPartNames#NOSE}{@value EntityModelPartNames#HEAD}
{@value EntityModelPartNames#BODY}Root part{@link #body}
{@value EntityModelPartNames#RIGHT_HIND_LEG}Root part{@link #rightHindLeg}
{@value EntityModelPartNames#LEFT_HIND_LEG}Root part{@link #leftHindLeg}
{@value EntityModelPartNames#RIGHT_FRONT_LEG}Root part{@link #rightFrontLeg}
{@value EntityModelPartNames#LEFT_FRONT_LEG}Root part{@link #leftFrontLeg}
+ COMMENT
METHOD (Lnet/minecraft/class_630;)V ARG 1 root METHOD method_35742 getTexturedModelData ()Lnet/minecraft/class_5607; diff --git a/mappings/net/minecraft/client/render/entity/model/GuardianEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/GuardianEntityModel.mapping index 17685197bc..3a23207cad 100644 --- a/mappings/net/minecraft/client/render/entity/model/GuardianEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/GuardianEntityModel.mapping @@ -7,9 +7,13 @@ CLASS net/minecraft/class_570 net/minecraft/client/render/entity/model/GuardianE FIELD field_17136 SPIKE_PIVOTS_Z [F FIELD field_27420 root Lnet/minecraft/class_630; FIELD field_32480 EYE Ljava/lang/String; + COMMENT The key of the eye model part, whose value is {@value}. FIELD field_32481 TAIL0 Ljava/lang/String; + COMMENT The key of the tail0 model part, whose value is {@value}. FIELD field_32482 TAIL1 Ljava/lang/String; + COMMENT The key of the tail1 model part, whose value is {@value}. FIELD field_32483 TAIL2 Ljava/lang/String; + COMMENT The key of the tail2 model part, whose value is {@value}. FIELD field_3378 tail [Lnet/minecraft/class_630; FIELD field_3379 head Lnet/minecraft/class_630; FIELD field_3380 spikes [Lnet/minecraft/class_630; diff --git a/mappings/net/minecraft/client/render/entity/model/HoglinEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/HoglinEntityModel.mapping index 19d0bf4c1f..0e4e7b2871 100644 --- a/mappings/net/minecraft/client/render/entity/model/HoglinEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/HoglinEntityModel.mapping @@ -1,4 +1,47 @@ CLASS net/minecraft/class_4791 net/minecraft/client/render/entity/model/HoglinEntityModel + COMMENT Represents the model of a hoglin-like entity. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value EntityModelPartNames#BODY}Root part{@link #body}
{@value EntityModelPartNames#MANE}{@value EntityModelPartNames#BODY}{@link #mane}
{@value EntityModelPartNames#HEAD}Root part{@link #head}
{@value EntityModelPartNames#RIGHT_EAR}{@value EntityModelPartNames#HEAD}{@link #rightEar}
{@value EntityModelPartNames#LEFT_EAR}{@value EntityModelPartNames#HEAD}{@link #leftEar}
{@value EntityModelPartNames#RIGHT_HORN}{@value EntityModelPartNames#HEAD}
{@value EntityModelPartNames#LEFT_HORN}{@value EntityModelPartNames#HEAD}
{@value EntityModelPartNames#RIGHT_FRONT_LEG}Root part{@link #rightFrontLeg}
{@value EntityModelPartNames#LEFT_FRONT_LEG}Root part{@link #leftFrontLeg}
{@value EntityModelPartNames#RIGHT_HIND_LEG}Root part{@link #rightHindLeg}
{@value EntityModelPartNames#LEFT_HIND_LEG}Root part{@link #leftHindLeg}
+ COMMENT
FIELD field_22227 head Lnet/minecraft/class_630; FIELD field_22228 rightEar Lnet/minecraft/class_630; FIELD field_22229 leftEar Lnet/minecraft/class_630; diff --git a/mappings/net/minecraft/client/render/entity/model/HorseEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/HorseEntityModel.mapping index faa99c8abd..238327052c 100644 --- a/mappings/net/minecraft/client/render/entity/model/HorseEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/HorseEntityModel.mapping @@ -8,17 +8,29 @@ CLASS net/minecraft/class_549 net/minecraft/client/render/entity/model/HorseEnti FIELD field_27431 rightFrontBabyLeg Lnet/minecraft/class_630; FIELD field_27432 leftFrontBabyLeg Lnet/minecraft/class_630; FIELD field_32486 HEAD_PARTS Ljava/lang/String; + COMMENT The key of the model part containing the head model parts, whose value is {@value}. FIELD field_32492 LEFT_HIND_BABY_LEG Ljava/lang/String; + COMMENT The key of the left hind baby leg model part, whose value is {@value}. FIELD field_32493 RIGHT_HIND_BABY_LEG Ljava/lang/String; + COMMENT The key of the right hind baby leg model part, whose value is {@value}. FIELD field_32494 LEFT_FRONT_BABY_LEG Ljava/lang/String; + COMMENT The key of the left front baby leg model part, whose value is {@value}. FIELD field_32495 RIGHT_FRONT_BABY_LEG Ljava/lang/String; + COMMENT The key of the right front baby leg model part, whose value is {@value}. FIELD field_32496 SADDLE Ljava/lang/String; + COMMENT The key of the saddle mane model part, whose value is {@value}. FIELD field_32497 LEFT_SADDLE_MOUTH Ljava/lang/String; + COMMENT The key of the left saddle mouth model part, whose value is {@value}. FIELD field_32498 LEFT_SADDLE_LINE Ljava/lang/String; + COMMENT The key of the left saddle line model part, whose value is {@value}. FIELD field_32499 RIGHT_SADDLE_MOUTH Ljava/lang/String; + COMMENT The key of the right saddle mouth model part, whose value is {@value}. FIELD field_32500 RIGHT_SADDLE_LINE Ljava/lang/String; + COMMENT The key of the right saddle line model part, whose value is {@value}. FIELD field_32501 HEAD_SADDLE Ljava/lang/String; + COMMENT The key of the head saddle model part, whose value is {@value}. FIELD field_32502 MOUTH_SADDLE_WRAP Ljava/lang/String; + COMMENT The key of the mouth saddle wrap mane model part, whose value is {@value}. FIELD field_3300 tail Lnet/minecraft/class_630; FIELD field_3301 straps [Lnet/minecraft/class_630; FIELD field_3304 saddle [Lnet/minecraft/class_630; diff --git a/mappings/net/minecraft/client/render/entity/model/LeashKnotEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/LeashKnotEntityModel.mapping index 326048c99d..640af4b3ac 100644 --- a/mappings/net/minecraft/client/render/entity/model/LeashKnotEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/LeashKnotEntityModel.mapping @@ -1,6 +1,20 @@ CLASS net/minecraft/class_579 net/minecraft/client/render/entity/model/LeashKnotEntityModel + COMMENT Represents the model of a leash-knot-like entity. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value KNOT}{@linkplain #root Root part}{@link #knot}
+ COMMENT
FIELD field_27442 root Lnet/minecraft/class_630; FIELD field_32509 KNOT Ljava/lang/String; + COMMENT The key of the knot model part, whose value is {@value}. FIELD field_3431 knot Lnet/minecraft/class_630; METHOD (Lnet/minecraft/class_630;)V ARG 1 root diff --git a/mappings/net/minecraft/client/render/entity/model/LlamaEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/LlamaEntityModel.mapping index dc46de30e6..e76e1568c3 100644 --- a/mappings/net/minecraft/client/render/entity/model/LlamaEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/LlamaEntityModel.mapping @@ -1,4 +1,38 @@ CLASS net/minecraft/class_578 net/minecraft/client/render/entity/model/LlamaEntityModel + COMMENT Represents the model of a llama-like entity. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value EntityModelPartNames#HEAD}Root part{@link #head}
{@value EntityModelPartNames#BODY}Root part{@link #body}
{@value EntityModelPartNames#RIGHT_CHEST}Root part{@link #rightChest}
{@value EntityModelPartNames#LEFT_CHEST}Root part{@link #leftChest}
{@value EntityModelPartNames#RIGHT_HIND_LEG}Root part{@link #rightHindLeg}
{@value EntityModelPartNames#LEFT_HIND_LEG}Root part{@link #leftHindLeg}
{@value EntityModelPartNames#RIGHT_FRONT_LEG}Root part{@link #rightFrontLeg}
{@value EntityModelPartNames#LEFT_FRONT_LEG}Root part{@link #leftFrontLeg}
+ COMMENT
FIELD field_27443 head Lnet/minecraft/class_630; FIELD field_27444 body Lnet/minecraft/class_630; FIELD field_27445 rightHindLeg Lnet/minecraft/class_630; @@ -9,5 +43,9 @@ CLASS net/minecraft/class_578 net/minecraft/client/render/entity/model/LlamaEnti FIELD field_27450 leftChest Lnet/minecraft/class_630; METHOD (Lnet/minecraft/class_630;)V ARG 1 root + METHOD method_22963 (Lnet/minecraft/class_4587;Lnet/minecraft/class_4588;IIFFFFLnet/minecraft/class_630;)V + ARG 8 part + METHOD method_22964 (Lnet/minecraft/class_4587;Lnet/minecraft/class_4588;IIFFFFLnet/minecraft/class_630;)V + ARG 8 part METHOD method_32018 getTexturedModelData (Lnet/minecraft/class_5605;)Lnet/minecraft/class_5607; ARG 0 dilation diff --git a/mappings/net/minecraft/client/render/entity/model/LlamaSpitEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/LlamaSpitEntityModel.mapping index 45edded473..9e73ecbb21 100644 --- a/mappings/net/minecraft/client/render/entity/model/LlamaSpitEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/LlamaSpitEntityModel.mapping @@ -1,6 +1,20 @@ CLASS net/minecraft/class_581 net/minecraft/client/render/entity/model/LlamaSpitEntityModel + COMMENT Represents the model of llama-spit-like entity. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value #MAIN}{@linkplain #root Root part}
+ COMMENT
FIELD field_27451 root Lnet/minecraft/class_630; FIELD field_32510 MAIN Ljava/lang/String; + COMMENT The key of the main model part, whose value is {@value}. METHOD (Lnet/minecraft/class_630;)V ARG 1 root METHOD method_32019 getTexturedModelData ()Lnet/minecraft/class_5607; diff --git a/mappings/net/minecraft/client/render/entity/model/MinecartEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/MinecartEntityModel.mapping index 27c1ba6004..986fde2ca7 100644 --- a/mappings/net/minecraft/client/render/entity/model/MinecartEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/MinecartEntityModel.mapping @@ -1,7 +1,36 @@ CLASS net/minecraft/class_580 net/minecraft/client/render/entity/model/MinecartEntityModel + COMMENT Represents the model of a minecart-like entity. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@code bottom}{@linkplain #root Root part}
{@code front}{@linkplain #root Root part}
{@code back}{@linkplain #root Root part}
{@code left}{@linkplain #root Root part}
{@code right}{@linkplain #root Root part}
{@value #CONTENTS}{@linkplain #root Root part}{@link #contents}
+ COMMENT
FIELD field_27452 root Lnet/minecraft/class_630; FIELD field_27453 contents Lnet/minecraft/class_630; FIELD field_32511 CONTENTS Ljava/lang/String; + COMMENT The key of the contents model part, whose value is {@value}. METHOD (Lnet/minecraft/class_630;)V ARG 1 root METHOD method_32020 getTexturedModelData ()Lnet/minecraft/class_5607; diff --git a/mappings/net/minecraft/client/render/entity/model/OcelotEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/OcelotEntityModel.mapping index 323ebba1ce..9263e6c965 100644 --- a/mappings/net/minecraft/client/render/entity/model/OcelotEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/OcelotEntityModel.mapping @@ -1,10 +1,46 @@ CLASS net/minecraft/class_582 net/minecraft/client/render/entity/model/OcelotEntityModel + COMMENT Represents the model of an ocelot-like entity. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value EntityModelPartNames#HEAD}Root part{@link #head}
{@value EntityModelPartNames#BODY}Root part{@link #body}
{@value #TAIL1}Root part{@link #upperTail}
{@value #TAIL2}Root part{@link #lowerTail}
{@value EntityModelPartNames#RIGHT_HIND_LEG}Root part{@link #rightHindLeg}
{@value EntityModelPartNames#LEFT_HIND_LEG}Root part{@link #leftHindLeg}
{@value EntityModelPartNames#RIGHT_FRONT_LEG}Root part{@link #rightFrontLeg}
{@value EntityModelPartNames#LEFT_FRONT_LEG}Root part{@link #leftFrontLeg}
+ COMMENT
FIELD field_27454 leftHindLeg Lnet/minecraft/class_630; FIELD field_27455 rightHindLeg Lnet/minecraft/class_630; FIELD field_27456 leftFrontLeg Lnet/minecraft/class_630; FIELD field_27457 rightFrontLeg Lnet/minecraft/class_630; FIELD field_32518 TAIL1 Ljava/lang/String; + COMMENT The key of the upper tail model part, whose value is {@value}. FIELD field_32519 TAIL2 Ljava/lang/String; + COMMENT The key of the lower tail model part, whose value is {@value}. FIELD field_3434 animationState I FIELD field_3435 head Lnet/minecraft/class_630; FIELD field_3436 upperTail Lnet/minecraft/class_630; diff --git a/mappings/net/minecraft/client/render/entity/model/ParrotEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/ParrotEntityModel.mapping index 760a910d8b..ec77db9493 100644 --- a/mappings/net/minecraft/client/render/entity/model/ParrotEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/ParrotEntityModel.mapping @@ -5,6 +5,7 @@ CLASS net/minecraft/class_584 net/minecraft/client/render/entity/model/ParrotEnt FIELD field_27461 leftLeg Lnet/minecraft/class_630; FIELD field_27462 rightLeg Lnet/minecraft/class_630; FIELD field_32533 FEATHER Ljava/lang/String; + COMMENT The key of the feather model part, whose value is {@value}. FIELD field_3452 head Lnet/minecraft/class_630; FIELD field_3456 feather Lnet/minecraft/class_630; FIELD field_3458 body Lnet/minecraft/class_630; diff --git a/mappings/net/minecraft/client/render/entity/model/PhantomEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/PhantomEntityModel.mapping index 27fd48d311..c0e6a6352c 100644 --- a/mappings/net/minecraft/client/render/entity/model/PhantomEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/PhantomEntityModel.mapping @@ -1,7 +1,9 @@ CLASS net/minecraft/class_588 net/minecraft/client/render/entity/model/PhantomEntityModel FIELD field_27463 root Lnet/minecraft/class_630; FIELD field_32534 TAIL_BASE Ljava/lang/String; + COMMENT The key of the tail base model part, whose value is {@value}. FIELD field_32535 TAIL_TIP Ljava/lang/String; + COMMENT The key of the tail tip model part, whose value is {@value}. FIELD field_3471 tailBase Lnet/minecraft/class_630; FIELD field_3472 rightWingTip Lnet/minecraft/class_630; FIELD field_3473 tailTip Lnet/minecraft/class_630; diff --git a/mappings/net/minecraft/client/render/entity/model/PigEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/PigEntityModel.mapping index da8740c284..5803f5e2a9 100644 --- a/mappings/net/minecraft/client/render/entity/model/PigEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/PigEntityModel.mapping @@ -1,4 +1,7 @@ CLASS net/minecraft/class_587 net/minecraft/client/render/entity/model/PigEntityModel + COMMENT Represents the model of a pig-like entity. + COMMENT + COMMENT

{@inheritDoc} METHOD (Lnet/minecraft/class_630;)V ARG 1 root METHOD method_32025 getTexturedModelData (Lnet/minecraft/class_5605;)Lnet/minecraft/class_5607; diff --git a/mappings/net/minecraft/client/render/entity/model/PiglinEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/PiglinEntityModel.mapping index 89c5f09777..a448b1f812 100644 --- a/mappings/net/minecraft/client/render/entity/model/PiglinEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/PiglinEntityModel.mapping @@ -1,4 +1,62 @@ CLASS net/minecraft/class_4840 net/minecraft/client/render/entity/model/PiglinEntityModel + COMMENT Represents the model of a piglin-like entity. + COMMENT + COMMENT

+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value EntityModelPartNames#HAT} (note: is by default empty)Root part{@link #hat}
{@value EntityModelPartNames#HEAD}Root part{@link #head}
{@value EntityModelPartNames#BODY}Root part{@link #body}
{@value EntityModelPartNames#RIGHT_ARM}Root part{@link #rightArm}
{@value EntityModelPartNames#LEFT_ARM}Root part{@link #leftArm}
{@value EntityModelPartNames#RIGHT_LEG}Root part{@link #rightLeg}
{@value EntityModelPartNames#LEFT_LEG}Root part{@link #leftLeg}
{@value #EAR}Root part{@link #ear}
{@value #CLOAK}Root part{@link #cloak}
{@value #LEFT_SLEEVE}Root part{@link #leftSleeve}
{@value #RIGHT_SLEEVE}Root part{@link #rightSleeve}
{@value #LEFT_PANTS}Root part{@link #leftPants}
{@value #RIGHT_PANTS}Root part{@link #rightPants}
{@value EntityModelPartNames#JACKET}Root part{@link #jacket}
{@value EntityModelPartNames#LEFT_EAR}{@value EntityModelPartNames#HEAD}{@link #leftEar}
{@value EntityModelPartNames#RIGHT_EAR}{@value EntityModelPartNames#HEAD}{@link #rightEar}
+ COMMENT
FIELD field_25632 leftArmRotation Lnet/minecraft/class_5603; FIELD field_25633 rightArmRotation Lnet/minecraft/class_5603; FIELD field_25634 bodyRotation Lnet/minecraft/class_5603; diff --git a/mappings/net/minecraft/client/render/entity/model/PlayerEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/PlayerEntityModel.mapping index 3995e27af5..b4585896d7 100644 --- a/mappings/net/minecraft/client/render/entity/model/PlayerEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/PlayerEntityModel.mapping @@ -1,12 +1,70 @@ CLASS net/minecraft/class_591 net/minecraft/client/render/entity/model/PlayerEntityModel + COMMENT Represents the model of a player-like entity. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value EntityModelPartNames#HAT}Root part{@link #hat}
{@value EntityModelPartNames#HEAD}Root part{@link #head}
{@value EntityModelPartNames#BODY}Root part{@link #body}
{@value EntityModelPartNames#RIGHT_ARM}Root part{@link #rightArm}
{@value EntityModelPartNames#LEFT_ARM}Root part{@link #leftArm}
{@value EntityModelPartNames#RIGHT_LEG}Root part{@link #rightLeg}
{@value EntityModelPartNames#LEFT_LEG}Root part{@link #leftLeg}
{@value #EAR}Root part{@link #ear}
{@value #CLOAK}Root part{@link #cloak}
{@value #LEFT_SLEEVE}Root part{@link #leftSleeve}
{@value #RIGHT_SLEEVE}Root part{@link #rightSleeve}
{@value #LEFT_PANTS}Root part{@link #leftPants}
{@value #RIGHT_PANTS}Root part{@link #rightPants}
{@value EntityModelPartNames#JACKET}Root part{@link #jacket}
+ COMMENT
FIELD field_27466 parts Ljava/util/List; COMMENT All the parts. Used when picking a part to render stuck arrows. FIELD field_32536 LEFT_PANTS Ljava/lang/String; + COMMENT The key of the left pants model part, whose value is {@value}. FIELD field_32537 RIGHT_PANTS Ljava/lang/String; + COMMENT The key of the right pants model part, whose value is {@value}. FIELD field_32538 EAR Ljava/lang/String; + COMMENT The key of the ear model part, whose value is {@value}. FIELD field_32539 CLOAK Ljava/lang/String; + COMMENT The key of the cloak model part, whose value is {@value}. FIELD field_32540 LEFT_SLEEVE Ljava/lang/String; + COMMENT The key of the left sleeve model part, whose value is {@value}. FIELD field_32541 RIGHT_SLEEVE Ljava/lang/String; + COMMENT The key of the right sleeve model part, whose value is {@value}. FIELD field_3479 rightPants Lnet/minecraft/class_630; FIELD field_3480 thinArms Z FIELD field_3481 ear Lnet/minecraft/class_630; diff --git a/mappings/net/minecraft/client/render/entity/model/QuadrupedEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/QuadrupedEntityModel.mapping index 7a5b6baf93..f12e84375f 100644 --- a/mappings/net/minecraft/client/render/entity/model/QuadrupedEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/QuadrupedEntityModel.mapping @@ -1,4 +1,32 @@ CLASS net/minecraft/class_597 net/minecraft/client/render/entity/model/QuadrupedEntityModel + COMMENT Represents the model of a quadruped entity. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value EntityModelPartNames#HEAD}Root part{@link #head}
{@value EntityModelPartNames#BODY}Root part{@link #body}
{@value EntityModelPartNames#RIGHT_HIND_LEG}Root part{@link #rightHindLeg}
{@value EntityModelPartNames#LEFT_HIND_LEG}Root part{@link #leftHindLeg}
{@value EntityModelPartNames#RIGHT_FRONT_LEG}Root part{@link #rightFrontLeg}
{@value EntityModelPartNames#LEFT_FRONT_LEG}Root part{@link #leftFrontLeg}
+ COMMENT
FIELD field_27476 rightHindLeg Lnet/minecraft/class_630; FIELD field_27477 leftHindLeg Lnet/minecraft/class_630; FIELD field_27478 rightFrontLeg Lnet/minecraft/class_630; diff --git a/mappings/net/minecraft/client/render/entity/model/RabbitEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/RabbitEntityModel.mapping index a14586d6d6..7f6072284b 100644 --- a/mappings/net/minecraft/client/render/entity/model/RabbitEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/RabbitEntityModel.mapping @@ -1,4 +1,50 @@ CLASS net/minecraft/class_596 net/minecraft/client/render/entity/model/RabbitEntityModel + COMMENT Represents the model of a {@linkplain RabbitEntity}. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value EntityModelPartNames#LEFT_HIND_FOOT}Root part{@link #leftHindLeg}
{@value EntityModelPartNames#RIGHT_HIND_FOOT}Root part{@link #rightHindLeg}
{@value #LEFT_HAUNCH}Root part{@link #leftHaunch}
{@value #RIGHT_HAUNCH}Root part{@link #rightHaunch}
{@value EntityModelPartNames#BODY}Root part{@link #body}
{@value EntityModelPartNames#LEFT_FRONT_LEG}Root part{@link #leftFrontLeg}
{@value EntityModelPartNames#RIGHT_FRONT_LEG}Root part{@link #rightFrontLeg}
{@value EntityModelPartNames#HEAD}Root part{@link #head}
{@value EntityModelPartNames#RIGHT_EAR}Root part{@link #rightEar}
{@value EntityModelPartNames#LEFT_EAR}Root part{@link #leftEar}
{@value EntityModelPartNames#TAIL}Root part{@link #tail}
{@value EntityModelPartNames#NOSE}Root part{@link #nose}
+ COMMENT
FIELD field_27480 leftHindLeg Lnet/minecraft/class_630; FIELD field_27481 rightHindLeg Lnet/minecraft/class_630; FIELD field_27482 leftHaunch Lnet/minecraft/class_630; @@ -9,7 +55,9 @@ CLASS net/minecraft/class_596 net/minecraft/client/render/entity/model/RabbitEnt FIELD field_27487 rightEar Lnet/minecraft/class_630; FIELD field_27488 leftEar Lnet/minecraft/class_630; FIELD field_32544 LEFT_HAUNCH Ljava/lang/String; + COMMENT The key of the left haunch model part, whose value is {@value}. FIELD field_32545 RIGHT_HAUNCH Ljava/lang/String; + COMMENT The key of the right haunch model part, whose value is {@value}. FIELD field_3524 tail Lnet/minecraft/class_630; FIELD field_3528 body Lnet/minecraft/class_630; FIELD field_3530 nose Lnet/minecraft/class_630; diff --git a/mappings/net/minecraft/client/render/entity/model/SalmonEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/SalmonEntityModel.mapping index 6ebfea53ee..e90dcbb1ac 100644 --- a/mappings/net/minecraft/client/render/entity/model/SalmonEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/SalmonEntityModel.mapping @@ -1,7 +1,9 @@ CLASS net/minecraft/class_599 net/minecraft/client/render/entity/model/SalmonEntityModel FIELD field_27494 root Lnet/minecraft/class_630; FIELD field_32547 BODY_FRONT Ljava/lang/String; + COMMENT The key of the body front model part, whose value is {@value}. FIELD field_32548 BODY_BACK Ljava/lang/String; + COMMENT The key of the body back model part, whose value is {@value}. FIELD field_3548 tail Lnet/minecraft/class_630; METHOD (Lnet/minecraft/class_630;)V ARG 1 root diff --git a/mappings/net/minecraft/client/render/entity/model/ShieldEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/ShieldEntityModel.mapping index 7319bdb60b..1b7b3b5d19 100644 --- a/mappings/net/minecraft/client/render/entity/model/ShieldEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/ShieldEntityModel.mapping @@ -1,7 +1,25 @@ CLASS net/minecraft/class_600 net/minecraft/client/render/entity/model/ShieldEntityModel + COMMENT Represents the model of an held shield. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value #PLATE}{@linkplain #root Root part}{@link #plate}
{@value #HANDLE}{@linkplain #root Root part}{@link #handle}
+ COMMENT
FIELD field_27495 root Lnet/minecraft/class_630; FIELD field_32549 PLATE Ljava/lang/String; + COMMENT The key of the plate model part, whose value is {@value}. FIELD field_32550 HANDLE Ljava/lang/String; + COMMENT The key of the handle model part, whose value is {@value}. FIELD field_3550 plate Lnet/minecraft/class_630; FIELD field_3551 handle Lnet/minecraft/class_630; METHOD (Lnet/minecraft/class_630;)V diff --git a/mappings/net/minecraft/client/render/entity/model/ShulkerBulletEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/ShulkerBulletEntityModel.mapping index acc0452bde..8f8ddcd1e3 100644 --- a/mappings/net/minecraft/client/render/entity/model/ShulkerBulletEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/ShulkerBulletEntityModel.mapping @@ -1,6 +1,20 @@ CLASS net/minecraft/class_603 net/minecraft/client/render/entity/model/ShulkerBulletEntityModel + COMMENT Represents the model of shulker-bullet-like entity. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value #MAIN}{@linkplain #root Root part}{@link #bullet}
+ COMMENT
FIELD field_27496 root Lnet/minecraft/class_630; FIELD field_32553 MAIN Ljava/lang/String; + COMMENT The key of the main model part, whose value is {@value}. FIELD field_3556 bullet Lnet/minecraft/class_630; METHOD (Lnet/minecraft/class_630;)V ARG 1 root diff --git a/mappings/net/minecraft/client/render/entity/model/ShulkerEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/ShulkerEntityModel.mapping index 5dd1836086..0ccaaf6541 100644 --- a/mappings/net/minecraft/client/render/entity/model/ShulkerEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/ShulkerEntityModel.mapping @@ -1,6 +1,8 @@ CLASS net/minecraft/class_602 net/minecraft/client/render/entity/model/ShulkerEntityModel FIELD field_32554 LID Ljava/lang/String; + COMMENT The key of the lid model part, whose value is {@value}. FIELD field_32555 BASE Ljava/lang/String; + COMMENT The key of the base model part, whose value is {@value}. FIELD field_3553 base Lnet/minecraft/class_630; FIELD field_3554 head Lnet/minecraft/class_630; FIELD field_3555 lid Lnet/minecraft/class_630; diff --git a/mappings/net/minecraft/client/render/entity/model/SkullEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/SkullEntityModel.mapping index 66156b0bef..e53498e290 100644 --- a/mappings/net/minecraft/client/render/entity/model/SkullEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/SkullEntityModel.mapping @@ -1,4 +1,20 @@ CLASS net/minecraft/class_607 net/minecraft/client/render/entity/model/SkullEntityModel + COMMENT Represents the model of a skull. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value EntityModelPartNames#HEAD}{@linkplain #root Root part}{@link #head}
{@value EntityModelPartNames#HAT} (note: may not exist){@value EntityModelPartNames#HEAD}
+ COMMENT
FIELD field_27498 root Lnet/minecraft/class_630; FIELD field_3564 head Lnet/minecraft/class_630; METHOD (Lnet/minecraft/class_630;)V diff --git a/mappings/net/minecraft/client/render/entity/model/SnowGolemEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/SnowGolemEntityModel.mapping index 4719782e4d..12a8be2467 100644 --- a/mappings/net/minecraft/client/render/entity/model/SnowGolemEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/SnowGolemEntityModel.mapping @@ -4,6 +4,7 @@ CLASS net/minecraft/class_608 net/minecraft/client/render/entity/model/SnowGolem FIELD field_27502 leftArm Lnet/minecraft/class_630; FIELD field_27503 rightArm Lnet/minecraft/class_630; FIELD field_32557 UPPER_BODY Ljava/lang/String; + COMMENT The key of the upper body model part, whose value is {@value}. FIELD field_3568 head Lnet/minecraft/class_630; METHOD (Lnet/minecraft/class_630;)V ARG 1 root diff --git a/mappings/net/minecraft/client/render/entity/model/SpiderEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/SpiderEntityModel.mapping index dedf646991..da0dd01cb1 100644 --- a/mappings/net/minecraft/client/render/entity/model/SpiderEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/SpiderEntityModel.mapping @@ -9,11 +9,17 @@ CLASS net/minecraft/class_611 net/minecraft/client/render/entity/model/SpiderEnt FIELD field_27511 rightFrontLeg Lnet/minecraft/class_630; FIELD field_27512 leftFrontLeg Lnet/minecraft/class_630; FIELD field_32558 BODY0 Ljava/lang/String; + COMMENT The key of the first model part of the body, whose value is {@value}. FIELD field_32559 BODY1 Ljava/lang/String; + COMMENT The key of the second model part of the body, whose value is {@value}. FIELD field_32560 RIGHT_MIDDLE_FRONT_LEG Ljava/lang/String; + COMMENT The key of the right middle front leg model part, whose value is {@value}. FIELD field_32561 LEFT_MIDDLE_FRONT_LEG Ljava/lang/String; + COMMENT The key of the left middle front leg model part, whose value is {@value}. FIELD field_32562 RIGHT_MIDDLE_HIND_LEG Ljava/lang/String; + COMMENT The key of the right middle hind leg model part, whose value is {@value}. FIELD field_32563 LEFT_MIDDLE_HIND_LEG Ljava/lang/String; + COMMENT The key of the left middle hind leg model part, whose value is {@value}. FIELD field_3583 head Lnet/minecraft/class_630; METHOD (Lnet/minecraft/class_630;)V ARG 1 root diff --git a/mappings/net/minecraft/client/render/entity/model/SquidEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/SquidEntityModel.mapping index 196955d9c0..c7b181572b 100644 --- a/mappings/net/minecraft/client/render/entity/model/SquidEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/SquidEntityModel.mapping @@ -1,4 +1,41 @@ CLASS net/minecraft/class_610 net/minecraft/client/render/entity/model/SquidEntityModel + COMMENT Represents the model of a squid-like entity. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value EntityModelPartNames#BODY}{@linkplain #root Root part}
{@code tentacle0}{@linkplain #root Root part}{@link #tentacles tentacles[0]}
{@code tentacle1}{@linkplain #root Root part}{@link #tentacles tentacles[1]}
{@code tentacle2}{@linkplain #root Root part}{@link #tentacles tentacles[2]}
{@code tentacle3}{@linkplain #root Root part}{@link #tentacles tentacles[3]}
{@code tentacle4}{@linkplain #root Root part}{@link #tentacles tentacles[4]}
{@code tentacle5}{@linkplain #root Root part}{@link #tentacles tentacles[5]}
{@code tentacle6}{@linkplain #root Root part}{@link #tentacles tentacles[6]}
{@code tentacle7}{@linkplain #root Root part}{@link #tentacles tentacles[7]}
+ COMMENT
FIELD field_27513 root Lnet/minecraft/class_630; FIELD field_3574 tentacles [Lnet/minecraft/class_630; METHOD (Lnet/minecraft/class_630;)V diff --git a/mappings/net/minecraft/client/render/entity/model/StriderEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/StriderEntityModel.mapping index 85ab80bcc0..7c32b09eb9 100644 --- a/mappings/net/minecraft/client/render/entity/model/StriderEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/StriderEntityModel.mapping @@ -10,11 +10,17 @@ CLASS net/minecraft/class_4997 net/minecraft/client/render/entity/model/StriderE FIELD field_27519 leftMiddleBristle Lnet/minecraft/class_630; FIELD field_27520 leftBottomBristle Lnet/minecraft/class_630; FIELD field_32564 RIGHT_BOTTOM_BRISTLE Ljava/lang/String; + COMMENT The key of the right bottom bristle model part, whose value is {@value}. FIELD field_32565 RIGHT_MIDDLE_BRISTLE Ljava/lang/String; + COMMENT The key of the right middle bristle model part, whose value is {@value}. FIELD field_32566 RIGHT_TOP_BRISTLE Ljava/lang/String; + COMMENT The key of the right top bristle model part, whose value is {@value}. FIELD field_32567 LEFT_TOP_BRISTLE Ljava/lang/String; + COMMENT The key of the left top bristle model part, whose value is {@value}. FIELD field_32568 LEFT_MIDDLE_BRISTLE Ljava/lang/String; + COMMENT The key of the left middle bristle model part, whose value is {@value}. FIELD field_32569 LEFT_BOTTOM_BRISTLE Ljava/lang/String; + COMMENT The key of the left bottom bristle model part, whose value is {@value}. METHOD (Lnet/minecraft/class_630;)V ARG 1 root METHOD method_32058 getTexturedModelData ()Lnet/minecraft/class_5607; diff --git a/mappings/net/minecraft/client/render/entity/model/TridentEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/TridentEntityModel.mapping index ca6c619c4d..f07af9c721 100644 --- a/mappings/net/minecraft/client/render/entity/model/TridentEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/TridentEntityModel.mapping @@ -1,4 +1,29 @@ CLASS net/minecraft/class_613 net/minecraft/client/render/entity/model/TridentEntityModel + COMMENT Represents the model of a thrown trident. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@code pole}{@linkplain #root Root part}
{@code base}{@code pole}
{@code left_spike}{@code pole}
{@code middle_spike}{@code pole}
{@code right_spike}{@code pole}
+ COMMENT
FIELD field_27521 root Lnet/minecraft/class_630; FIELD field_3592 TEXTURE Lnet/minecraft/class_2960; METHOD (Lnet/minecraft/class_630;)V diff --git a/mappings/net/minecraft/client/render/entity/model/TurtleEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/TurtleEntityModel.mapping index 6734057fff..3ec7414aec 100644 --- a/mappings/net/minecraft/client/render/entity/model/TurtleEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/TurtleEntityModel.mapping @@ -1,5 +1,6 @@ CLASS net/minecraft/class_614 net/minecraft/client/render/entity/model/TurtleEntityModel FIELD field_32570 EGG_BELLY Ljava/lang/String; + COMMENT The key of the model part of the belly side of the turtle's shell, whose value is {@value}. FIELD field_3594 plastron Lnet/minecraft/class_630; COMMENT The belly side of the turtle's shell. METHOD (Lnet/minecraft/class_630;)V diff --git a/mappings/net/minecraft/client/render/entity/model/VexEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/VexEntityModel.mapping index 7130311b45..e9d294eccd 100644 --- a/mappings/net/minecraft/client/render/entity/model/VexEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/VexEntityModel.mapping @@ -1,4 +1,41 @@ CLASS net/minecraft/class_617 net/minecraft/client/render/entity/model/VexEntityModel + COMMENT Represents the model of a {@linkplain VexEntity}. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value EntityModelPartNames#HAT}Root part{@link #hat}
{@value EntityModelPartNames#HEAD}Root part{@link #head}
{@value EntityModelPartNames#BODY}Root part{@link #body}
{@value EntityModelPartNames#RIGHT_ARM}Root part{@link #rightArm}
{@value EntityModelPartNames#LEFT_ARM}Root part{@link #leftArm}
{@value EntityModelPartNames#RIGHT_LEG}Root part{@link #rightLeg}
{@value EntityModelPartNames#LEFT_LEG}Root part{@link #leftLeg}
{@value EntityModelPartNames#RIGHT_WING}Root part{@link #rightWing}
{@value EntityModelPartNames#LEFT_WING}Root part{@link #leftWing}
+ COMMENT
FIELD field_3601 leftWing Lnet/minecraft/class_630; FIELD field_3602 rightWing Lnet/minecraft/class_630; METHOD method_32063 getTexturedModelData ()Lnet/minecraft/class_5607; diff --git a/mappings/net/minecraft/client/render/entity/model/VillagerResemblingModel.mapping b/mappings/net/minecraft/client/render/entity/model/VillagerResemblingModel.mapping index 6271193fac..5af85c827b 100644 --- a/mappings/net/minecraft/client/render/entity/model/VillagerResemblingModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/VillagerResemblingModel.mapping @@ -1,4 +1,41 @@ CLASS net/minecraft/class_620 net/minecraft/client/render/entity/model/VillagerResemblingModel + COMMENT Represents the model of a villager resembling entity. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value EntityModelPartNames#HEAD}{@linkplain #root Root part}{@link #head}
{@value EntityModelPartNames#HAT}{@value EntityModelPartNames#HEAD}{@link #hat}
{@value EntityModelPartNames#HAT_RIM}{@value EntityModelPartNames#HAT}{@link #hatRim}
{@value EntityModelPartNames#NOSE}{@value EntityModelPartNames#HEAD}{@link #nose}
{@value EntityModelPartNames#BODY}{@linkplain #root Root part}
{@value EntityModelPartNames#JACKET}{@value EntityModelPartNames#BODY}
{@value EntityModelPartNames#ARMS}{@linkplain #root Root part}
{@value EntityModelPartNames#RIGHT_LEG}{@linkplain #root Root part}{@link #rightLeg}
{@value EntityModelPartNames#LEFT_LEG}{@linkplain #root Root part}{@link #leftLeg}
+ COMMENT
FIELD field_27525 nose Lnet/minecraft/class_630; FIELD field_27526 root Lnet/minecraft/class_630; FIELD field_27527 head Lnet/minecraft/class_630; diff --git a/mappings/net/minecraft/client/render/entity/model/WitchEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/WitchEntityModel.mapping index 5b94c2ffc9..fc1d5d9ced 100644 --- a/mappings/net/minecraft/client/render/entity/model/WitchEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/WitchEntityModel.mapping @@ -1,4 +1,50 @@ CLASS net/minecraft/class_622 net/minecraft/client/render/entity/model/WitchEntityModel + COMMENT Represents the model of a witch resembling entity. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@value EntityModelPartNames#HEAD}{@linkplain #root Root part}{@link #head}
{@value EntityModelPartNames#HAT}{@value EntityModelPartNames#HEAD}{@link #hat}
{@code hat2}{@value EntityModelPartNames#HAT}
{@code hat3}{@code hat2}
{@code hat4}{@code hat3}
{@value EntityModelPartNames#NOSE}{@value EntityModelPartNames#HEAD}{@link #nose}
{@code mole}{@value EntityModelPartNames#NOSE}
{@value EntityModelPartNames#BODY}{@linkplain #root Root part}
{@value EntityModelPartNames#JACKET}{@value EntityModelPartNames#BODY}
{@value EntityModelPartNames#ARMS}{@linkplain #root Root part}
{@value EntityModelPartNames#RIGHT_LEG}{@linkplain #root Root part}{@link #rightLeg}
{@value EntityModelPartNames#LEFT_LEG}{@linkplain #root Root part}{@link #leftLeg}
+ COMMENT
FIELD field_3614 liftingNose Z METHOD method_2839 getNose ()Lnet/minecraft/class_630; METHOD method_2840 setLiftingNose (Z)V diff --git a/mappings/net/minecraft/client/render/entity/model/WitherEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/WitherEntityModel.mapping index 99beb575a5..f884d2a288 100644 --- a/mappings/net/minecraft/client/render/entity/model/WitherEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/WitherEntityModel.mapping @@ -1,4 +1,32 @@ CLASS net/minecraft/class_621 net/minecraft/client/render/entity/model/WitherEntityModel + COMMENT Represents the model of a {@linkplain WitherEntity}. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Model parts of this model
Part NameParentCorresponding Field
{@code shoulders}{@linkplain #root Root part}
{@value #RIBCAGE}{@linkplain #root Root part}{@link #ribcage}
{@value EntityModelPartNames#TAIL}{@linkplain #root Root part}{@link #tail}
{@value #CENTER_HEAD}{@linkplain #root Root part}{@link #centerHead}
{@value #RIGHT_HEAD}{@linkplain #root Root part}{@link #rightHead}
{@value #LEFT_HEAD}{@linkplain #root Root part}{@link #leftHead}
+ COMMENT
FIELD field_27532 root Lnet/minecraft/class_630; FIELD field_27533 centerHead Lnet/minecraft/class_630; FIELD field_27534 rightHead Lnet/minecraft/class_630; @@ -6,9 +34,13 @@ CLASS net/minecraft/class_621 net/minecraft/client/render/entity/model/WitherEnt FIELD field_27536 ribcage Lnet/minecraft/class_630; FIELD field_27537 tail Lnet/minecraft/class_630; FIELD field_32571 RIBCAGE Ljava/lang/String; + COMMENT The key of the ribcage model part, whose value is {@value}. FIELD field_32572 CENTER_HEAD Ljava/lang/String; + COMMENT The key of the center head model part, whose value is {@value}. FIELD field_32573 RIGHT_HEAD Ljava/lang/String; + COMMENT The key of the right head model part, whose value is {@value}. FIELD field_32574 LEFT_HEAD Ljava/lang/String; + COMMENT The key of the left head model part, whose value is {@value}. METHOD (Lnet/minecraft/class_630;)V ARG 1 root METHOD method_32066 rotateHead (Lnet/minecraft/class_1528;Lnet/minecraft/class_630;I)V diff --git a/mappings/net/minecraft/client/render/entity/model/WolfEntityModel.mapping b/mappings/net/minecraft/client/render/entity/model/WolfEntityModel.mapping index 475c7eac69..66b3cf5417 100644 --- a/mappings/net/minecraft/client/render/entity/model/WolfEntityModel.mapping +++ b/mappings/net/minecraft/client/render/entity/model/WolfEntityModel.mapping @@ -6,8 +6,11 @@ CLASS net/minecraft/class_624 net/minecraft/client/render/entity/model/WolfEntit FIELD field_27540 rightFrontLeg Lnet/minecraft/class_630; FIELD field_27541 leftFrontLeg Lnet/minecraft/class_630; FIELD field_32577 REAL_HEAD Ljava/lang/String; + COMMENT The key of the real head model part, whose value is {@value}. FIELD field_32578 UPPER_BODY Ljava/lang/String; + COMMENT The key of the upper body model part, whose value is {@value}. FIELD field_32579 REAL_TAIL Ljava/lang/String; + COMMENT The key of the real tail model part, whose value is {@value}. FIELD field_3617 tail Lnet/minecraft/class_630; COMMENT The main bone used to animate the tail. Contains {@link #realTail} as one of its children. FIELD field_3619 neck Lnet/minecraft/class_630; diff --git a/mappings/net/minecraft/entity/passive/AxolotlBrain.mapping b/mappings/net/minecraft/entity/passive/AxolotlBrain.mapping index 33c41fbe5a..caf26df883 100644 --- a/mappings/net/minecraft/entity/passive/AxolotlBrain.mapping +++ b/mappings/net/minecraft/entity/passive/AxolotlBrain.mapping @@ -1,11 +1,58 @@ CLASS net/minecraft/class_5768 net/minecraft/entity/passive/AxolotlBrain + COMMENT Represents the definition of an {@linkplain AxolotlEntity axolotl entity} brain. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Activites associated to the {@linkplain AxolotlEntity axolotl entity} brain
ActivityTasks
{@link net.minecraft.entity.ai.brain.Activity#CORE}
    + COMMENT
  • {@link net.minecraft.entity.ai.brain.task.LookAroundTask}
  • + COMMENT
  • {@link net.minecraft.entity.ai.brain.task.WanderAroundTask}
  • + COMMENT
  • {@link net.minecraft.entity.ai.brain.task.PlayDeadTimerTask}
  • + COMMENT
  • {@link net.minecraft.entity.ai.brain.task.TemptationCooldownTask}
  • + COMMENT
{@link net.minecraft.entity.ai.brain.Activity#IDLE}
    + COMMENT
  • {@link net.minecraft.entity.ai.brain.task.FollowMobTask FollowMobTask(PLAYER)} (time limited)
  • + COMMENT
  • {@link net.minecraft.entity.ai.brain.task.BreedTask}
  • + COMMENT
  • {@link net.minecraft.entity.ai.brain.task.TemptTask} (random)
  • + COMMENT
  • {@link net.minecraft.entity.ai.brain.task.WalkTowardClosestAdultTask}
  • + COMMENT
  • {@link net.minecraft.entity.ai.brain.task.UpdateAttackTargetTask}
  • + COMMENT
  • {@link net.minecraft.entity.ai.brain.task.SeekWaterTask}
  • + COMMENT
  • {@link net.minecraft.entity.ai.brain.task.CompositeTask}
  • + COMMENT
{@link net.minecraft.entity.ai.brain.Activity#FIGHT}
    + COMMENT
  • {@link net.minecraft.entity.ai.brain.task.ForgetAttackTargetTask}
  • + COMMENT
  • {@link net.minecraft.entity.ai.brain.task.RangedApproachTask}
  • + COMMENT
  • {@link net.minecraft.entity.ai.brain.task.MeleeAttackTask}
  • + COMMENT
  • {@link net.minecraft.entity.ai.brain.task.ForgetTask}
  • + COMMENT
{@link net.minecraft.entity.ai.brain.Activity#PLAY_DEAD}
    + COMMENT
  • {@link net.minecraft.entity.ai.brain.task.PlayDeadTask}
  • + COMMENT
  • {@link net.minecraft.entity.ai.brain.task.ForgetTask}
  • + COMMENT
+ COMMENT
FIELD field_28351 WALK_TOWARD_ADULT_RANGE Lnet/minecraft/class_6019; METHOD method_33241 getTemptItems ()Lnet/minecraft/class_1856; METHOD method_33242 (Lnet/minecraft/class_1309;)F ARG 0 entity METHOD method_33243 create (Lnet/minecraft/class_4095;)Lnet/minecraft/class_4095; ARG 0 brain - METHOD method_33244 (Lnet/minecraft/class_5762;)V + METHOD method_33244 updateActivities (Lnet/minecraft/class_5762;)V ARG 0 axolotl METHOD method_33245 (Lnet/minecraft/class_1309;)F ARG 0 entity diff --git a/mappings/net/minecraft/entity/passive/AxolotlEntity.mapping b/mappings/net/minecraft/entity/passive/AxolotlEntity.mapping index 2425cd63df..78ba365a18 100644 --- a/mappings/net/minecraft/entity/passive/AxolotlEntity.mapping +++ b/mappings/net/minecraft/entity/passive/AxolotlEntity.mapping @@ -1,4 +1,38 @@ CLASS net/minecraft/class_5762 net/minecraft/entity/passive/AxolotlEntity + COMMENT Represents an axolotl, the cutest predator. + COMMENT + COMMENT
+ COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT + COMMENT
Relations of this entity class with the codebase
RelationClass
Brain{@link AxolotlBrain}
EntityData{@link AxolotlData}
Look Control{@link AxolotlLookControl}
Model{@link net.minecraft.client.render.entity.model.AxolotlEntityModel}
Move Control{@link AxolotlMoveControl}
Renderer{@link net.minecraft.client.render.entity.AxolotlEntityRenderer}
Swim Navigation{@link AxolotlSwimNavigation}
Variants{@link Variant}
+ COMMENT
FIELD field_28333 SENSORS Lcom/google/common/collect/ImmutableList; FIELD field_28334 MEMORY_MODULES Lcom/google/common/collect/ImmutableList; FIELD field_28335 VARIANT Lnet/minecraft/class_2940;