Posted June 17, 20187 yr My tameable dragon is kind of big, that's why when I watch it via third person, its kinda "zoomed in" a bit closer, how do I make it zoom out? In older versions the EntityRenderer used a "double field" called EntityRenderer.thirdPersonDistance, since it was protected we used reflection helpers to access it and change it's values. since it was removed we cant access it so now I need alternate methods. ReflectionClass: https://github.com/TheRPGAdventurer/dragonmounts2-1.12/blob/master/src/main/java/com/TheRPGAdventurer/ROTD/util/PrivateFields.java EntityTameableDragon usage: https://github.com/TheRPGAdventurer/dragonmounts2-1.12/blame/master/src/main/java/com/TheRPGAdventurer/ROTD/server/entity/EntityTameableDragon.java try { ReflectionHelper.setPrivateValue(EntityLiving.class, this, new DragonLookHelper(this), PrivateFields.ENTITYLIVING_LOOKHELPER); } catch (Exception ex) { L.warn("Can't override EntityLookHelper", ex); } I onced issued it here: Edited June 17, 20187 yr by TheRPGAdventurer
June 19, 20187 yr You can make a PR to fix this. Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support. 1.12 -> 1.13 primer by williewillus. 1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support. http://www.howoldisminecraft1710.today/
June 25, 20187 yr I submitted a PR for this, you'll have to wait if/when it gets accepted and released. https://github.com/MinecraftForge/MinecraftForge/pull/5000 Edited June 25, 20187 yr by larsgerrits Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support. 1.12 -> 1.13 primer by williewillus. 1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support. http://www.howoldisminecraft1710.today/
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.