Posted August 31, 201510 yr Hi, I've had this issue for a while and am not quite sure what the problem is. My mobs' animations seem a bit choppy, as seen here. The mob is just a scaled up ModelBiped. The Renderer class: public class RenderSizeable extends RenderLivingCreature { protected float scale; public RenderSizeable(ModelBase var1, float shadowsize, float scale, ResourceLocation texture) { super(var1, shadowsize * scale, texture); this.scale = scale; } public void preRenderScale(EntityMob var1, float var2) { GL11.glScalef(this.scale, this.scale, this.scale); } @Override protected void preRenderCallback(EntityLivingBase var1, float var2) { this.preRenderScale((EntityMob)var1, var2); } } Any idea what the issue might be? Check out my mod, Realms of Chaos, here. If I helped you, be sure to press the "Thank You" button!
September 1, 201510 yr It also seems like your frame rate is generally low, probably contributing as well. Who are you? Why have you brought me here? And why are there so many PewDiePie fanboys surrounding meeeeeeeee....... *falls into pit and dies*. Also this. Check it out. http://i.imgur.com/J4rrGt6.png[/img]
September 3, 201510 yr Author The video looks like the partialTicks are messed up, which probably happens because you just scaled the whole thing up. How is this different from how the Giant is scaled up in Vanilla? Check out my mod, Realms of Chaos, here. If I helped you, be sure to press the "Thank You" button!
September 3, 201510 yr Why dont you just use the normal doRender method in an entity renderer and do something like GLStateManager.pushMatrix(); GL11.scalef(); RenderMob.doRender(x,y,z,var8,partialTicks); GLStateManager.popMatrix(); It seems like you're overcomplicating thi. "you seem to be THE best modder I've seen imo." ~spynathan ლ(́◉◞౪◟◉‵ლ
September 4, 201510 yr Author Happens with all my mobs, not just the scaled-up ones. Check out my mod, Realms of Chaos, here. If I helped you, be sure to press the "Thank You" button!
September 4, 201510 yr Happens with all my mobs, not just the scaled-up ones. How about vanilla mobs, are they choppy as well? If not, perhaps you are doing some weird things in the mobs' models or perhaps your entity registration is using odd values for the update frequency? http://i.imgur.com/NdrFdld.png[/img]
September 4, 201510 yr Author Yep, it was the update frequency. No idea how that happened... Thanks! Check out my mod, Realms of Chaos, here. If I helped you, be sure to press the "Thank You" button!
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.