Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

How do you animate models AND put them in minecraft. Tried to find a video but no luck..

Animating code is in model class file. Try looking at ModelCow and ModelQuadruped. You will also need Entity class and Render class and of course you need to register it (like binding renderer to model and binding entity to model) 

simply overwrite the player model i've done this in the 1.7.10 so its not 100% sure if this still works but give it a try (btw this will COMPLETELY overwrite the model):

import net.minecraft.client.entity.AbstractClientPlayer;
import net.minecraft.client.model.ModelBlaze;
import net.minecraft.client.renderer.entity.RenderPlayer;
import net.minecraft.util.ResourceLocation;

public class OverwritePlayer extends RenderPlayer
{
    public OverwritePlayer(){
        super();
		//Overwriting it with our own model
        this.mainModel = new YourModelClass(1.0F);
    }

    protected ResourceLocation getEntityTexture(AbstractClientPlayer player)
    {
      //returning Resource .. Obviously 
        return new ResourceLocation("textures/pathto/texture.png");
    }
}


and register it like this:

RenderingRegistry.registerEntityRenderingHandler(EntityPlayer.class, new OverwritePlayer());

 

YourModelClass should extend ModelBiped and can be modeled / animated in Techne or in code
that should be look something about this:

 

import net.minecraft.client.model.ModelBiped;
import net.minecraft.client.model.ModelRenderer;
import net.minecraft.entity.Entity;

public class YourModelClass extends ModelBiped {

    public ModelRenderer head;
    public ModelRenderer body;
    public ModelRenderer rightArm;
    public ModelRenderer leftArm;
    public ModelRenderer rightLeg;
    public ModelRenderer leftLeg;
	
	
    public YourModelClass(float size) {
		//Modelsize rotation xTextureSize yTextureSize
    	super(size, 0.0f, 64, 32);
    	
        head = new ModelRenderer(this, 0, 0);
        head.setRotationPoint(0.0F, 0.0F, 0.0F);
        head.addBox(-4.0F, -8.0F, -4.0F, 8, 8, 8, 0.0F);

        body = new ModelRenderer(this, 16, 16);
        body.setRotationPoint(0.0F, 0.0F, 0.0F);
        body.addBox(-4.0F, 0.0F, -2.0F, 8, 12, 4, 0.0F);

        leftArm = new ModelRenderer(this, 40, 16);
        leftArm.setRotationPoint(5.0F, 2.0F, 0.0F);
        leftArm.addBox(-1.0F, -2.0F, -2.0F, 4, 12, 4, 0.0F);

        rightArm = new ModelRenderer(this, 40, 16);
        rightArm.setRotationPoint(-5.0F, 2.0F, 0.0F);
        rightArm.addBox(-3.0F, -2.0F, -2.0F, 4, 12, 4, 0.0F);

        leftLeg = new ModelRenderer(this, 0, 16);
        leftLeg.setRotationPoint(2.0F, 12.0F, 0.0F);
        leftLeg.addBox(-2.0F, 0.0F, -2.0F, 4, 12, 4, 0.0F);

        rightLeg = new ModelRenderer(this, 0, 16);
        rightLeg.setRotationPoint(-2.0F, 12.0F, 0.0F);
        rightLeg.addBox(-2.0F, 0.0F, -2.0F, 4, 12, 4, 0.0F);
        
    }

    @Override
    public void render(Entity entity, float f, float f1, float f2, float f3, float f4, float f5) { 

   }
    
    public void setRotationAngles(float s, float s1, float s2, float s3, float s4, float s5, Entity entiy) {
    }
    
}

 

i hope this will help you or give you a better understanding how you could do it

oh and this here will be also very helpfull (because its basicly the same concept!)
https://www.minecraftforum.net/forums/mapping-and-modding-java-edition/mapping-and-modding-tutorials/1571595-1-10-2-how-to-code-custom-3d-armor-models

Edited by Oscarita25

  • 1 month later...

i know this is a bit older now but i just wanted to say .. that i think that you can also use obj models because the ModelRender does support these ..
(obj models can be less blocky aka. they can be even completly smooth spheres) :P

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.