Posted April 25, 20187 yr thirdpersonDistance is the distance of your camera when in third person, it has a default value of 4.0F, it is private but with reflections we can utilize it. In older versions we used double d3 = (double)(this.thirdPersonDistancePrev + (thirdPersonDistance - this.thirdPersonDistancePrev) * partialTicks); Now we use double d3 = (double)(this.thirdPersonDistancePrev + (4.0F - this.thirdPersonDistancePrev) * partialTicks);
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.