не устанавливается
@Subscribe
public void onRender(EventRender e) {
if (!AttackAura.instance.isToggled() || mc.player == null) return;
mc.player.setHeadYaw(currentVisualRotation.getCurrentYaw());
mc.player.setBodyYaw(currentVisualRotation.getCurrentYaw());
mc.player.renderPitch = currentVisualRotation.getCurrentPitch();
mc.player.renderYaw = currentVisualRotation.getCurrentYaw();
mc.player.lastRenderPitch = currentVisualRotation.getCurrentPitch();
mc.player.lastRenderYaw = currentVisualRotation.getCurrentYaw();
}
делаю так, yaw видно, pitch дефолтный(как я камерой кручу)
@Subscribe
public void onRender(EventRender e) {
if (!AttackAura.instance.isToggled() || mc.player == null) return;
mc.player.setHeadYaw(currentVisualRotation.getCurrentYaw());
mc.player.setBodyYaw(currentVisualRotation.getCurrentYaw());
mc.player.renderPitch = currentVisualRotation.getCurrentPitch();
mc.player.renderYaw = currentVisualRotation.getCurrentYaw();
mc.player.lastRenderPitch = currentVisualRotation.getCurrentPitch();
mc.player.lastRenderYaw = currentVisualRotation.getCurrentYaw();
}
делаю так, yaw видно, pitch дефолтный(как я камерой кручу)