Jump to content

Recommended Posts

Posted

okay, so i am trying to animate my entity here, make the bees fly sporadically.

i did a few short animations to get a small grasp on it.

i am using MCanimator to acheive this.

however, this program is for 1.7.10. and it's giving me errors that (apparently) aren't supposed to come up.

 

can anyone lend a knowledgable eye?

 

@Override

public ModelRenderer addBox(String par1Str, float par2, float par3, float par4, int par5, int par6, int par7)

{

par1Str = this.boxName + "." + par1Str;

this.cubeList.add((new MCAModelBox(this, this.DDStextureOffsetX, this.DDStextureOffsetY, par2, par3, par4, par5, par6, par7, 0.0F)).func_78244_a(par1Str));

return this;

 

 

 

and this is the other one

 

* Compiles a GL display list for this model.

* EDITED VERSION BECAUSE OF THE PRIVATE FIELDS

*/

public void DDScompileDisplayList(float par1)

{

this.DDSdisplayList = GLAllocation.generateDisplayLists(1);

GL11.glNewList(this.DDSdisplayList, GL11.GL_COMPILE);

Tessellator tessellator = Tessellator.getInstance();

 

for (int i = 0; i < this.cubeList.size(); ++i)

{

((ModelBox)this.cubeList.get(i)).render(tessellator, par1);

}

 

GL11.glEndList();

this.DDScompiled = true;

}

}

 

 

as always.

 

thanks in advance

 

Posted

MCAnimator has given me so many problems I do not recommend it.

Its animations are not threadsafe, so even if you do solve this one you'll find that randomly the game will crash with a Concurrent Modification Exception.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

dammit.

 

are there any programs that you would recommend?

or should i find a tutorial?

Posted

okay, so i am trying to animate my entity here, make the bees fly sporadically.

Making the bees fly sporadically is NOT the same as animating. Take a look at EntityBat's navigation code - that will give you a good start at getting your bees to move in the way you want.

 

As far as actual animation is concerned, I would recommend starting out by looking at the various types of code vanilla Minecraft uses to animate entities. That will give you a good starting point for basic animations such as walking, flapping of wings, etc.

 

If your animation needs to be tied to a specific action, such as an attack, then take a look at the Iron Golem Entity and Model classes for one way to send information to the client.

Posted

its nothing special.

 

just 7 little blocks hovering around a hive

 

 

and thanks. ill check it out

Posted

Ohhhhh. Duh. That's what learning is I guess.

I plan on adding an actual swarm but the hive just will have...particles I guess.

Thanks.

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...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Thanks, I've now installed a slightly newer version and the server is at least starting up now.
    • i have the same issue. Found 1 Create mod class dependency(ies) in createdeco-1.3.3-1.19.2.jar, which are missing from the current create-1.19.2-0.5.1.i.jar Found 11 Create mod class dependency(ies) in createaddition-fabric+1.19.2-20230723a.jar, which are missing from the current create-1.19.2-0.5.1.i.jar Detailed walkthrough of mods which rely on missing Create mod classes: Mod: createaddition-fabric+1.19.2-20230723a.jar Missing classes of create: com/simibubi/create/compat/jei/category/sequencedAssembly/JeiSequencedAssemblySubCategory com/simibubi/create/compat/recipeViewerCommon/SequencedAssemblySubCategoryType com/simibubi/create/compat/rei/CreateREI com/simibubi/create/compat/rei/EmptyBackground com/simibubi/create/compat/rei/ItemIcon com/simibubi/create/compat/rei/category/CreateRecipeCategory com/simibubi/create/compat/rei/category/WidgetUtil com/simibubi/create/compat/rei/category/animations/AnimatedBlazeBurner com/simibubi/create/compat/rei/category/animations/AnimatedKinetics com/simibubi/create/compat/rei/category/sequencedAssembly/ReiSequencedAssemblySubCategory com/simibubi/create/compat/rei/display/CreateDisplay Mod: createdeco-1.3.3-1.19.2.jar Missing classes of create: com/simibubi/create/content/kinetics/fan/SplashingRecipe
    • The crash points to moonlight lib - try other builds or make a test without this mod and the mods requiring it
    • Do you have shaders enabled? There is an issue with the mod simpleclouds - remove this mod or disable shaders, if enabled  
    • Maybe you need to create file in assets/<modid>/items/<itemname>.json with content like this:   { "model": { "type": "minecraft:model", "model": "modname:item/itemname" } }  
  • Topics

×
×
  • Create New...

Important Information

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