Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update models of archgrey, grey, commetcube for animation #244

Open
wants to merge 1 commit into
base: minecraft/1.19+machinelib
Choose a base branch
from

Conversation

Nimu93
Copy link

@Nimu93 Nimu93 commented Nov 25, 2022

No description provided.

Copy link
Contributor

@JustPyrrha JustPyrrha left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please make sure you've read our contributing guidelines as it outlines things such as our commit message standard

public void setupAnim(T entity, float limbSwing, float limbSwingAmount, float ageInTicks, float netHeadYaw, float headPitch) {

public void setupAnim(T livingEntity, float limbSwing, float limbSwingAmount, float ageInTicks, float netHeadYaw, float headPitch) {
/*boolean bl = livingEntity.getFallFlyingTicks() > 4;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please dont leave commented out code in prs

Comment on lines +35 to 50
public class ArchGreyEntityModel<T extends ArchGreyEntity> extends EntityModel<T> {
private final ModelPart Body;
private final ModelPart Left_Arm;
private final ModelPart Right_Arm;
private final ModelPart Left_Leg;
private final ModelPart Right_Leg;
private final ModelPart Left_leg;
private final ModelPart Right_leg;
private final ModelPart Head;

public ArchGreyEntityModel(ModelPart root) {
this.Body = root.getChild("Body");
this.Left_Arm = root.getChild("Left_Arm");
this.Right_Arm = root.getChild("Right_Arm");
this.Left_Leg = root.getChild("Left_Leg");
this.Right_Leg = root.getChild("Right_Leg");
this.Left_leg = root.getChild("Left_Leg");
this.Right_leg = root.getChild("Right_Leg");
this.Head = root.getChild("Head");
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

whats with all the weird field names? is there some model json somewhere that needs them referenced like that or is it just someone before you having a pr accepted without actually following our standards?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants