mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-24 05:47:59 +01:00
Fixed bubble spell offset from entity center. Fixes #457
This commit is contained in:
parent
3cc7030e7b
commit
45fe1f943a
1 changed files with 10 additions and 7 deletions
|
@ -19,19 +19,22 @@ public class BubbleSpellRenderer extends SpellRenderer<BubbleSpell> {
|
||||||
super.render(matrices, vertices, spell, caster, light, limbAngle, limbDistance, tickDelta, animationProgress, headYaw, headPitch);
|
super.render(matrices, vertices, spell, caster, light, limbAngle, limbDistance, tickDelta, animationProgress, headYaw, headPitch);
|
||||||
|
|
||||||
matrices.push();
|
matrices.push();
|
||||||
double height = caster.asEntity().getEyeY() - caster.getOriginVector().y;
|
double height = caster.asEntity().getEyeY() - caster.getOriginVector().getY();
|
||||||
matrices.translate(0, height * 0.5F, 0);
|
|
||||||
|
|
||||||
float radius = spell.getRadius(tickDelta) * 0.7F;
|
|
||||||
|
|
||||||
VertexConsumer buffer = vertices.getBuffer(RenderLayers.getMagicNoColor());
|
float radius = spell.getRadius(tickDelta) * 1.5F;
|
||||||
|
|
||||||
|
matrices.translate(0, radius * 0.5F + height, 0);
|
||||||
|
|
||||||
|
VertexConsumer buffer = vertices.getBuffer(RenderLayers.getMagicShield());
|
||||||
|
|
||||||
Entity cameraEntity = MinecraftClient.getInstance().getCameraEntity();
|
Entity cameraEntity = MinecraftClient.getInstance().getCameraEntity();
|
||||||
|
|
||||||
matrices.push();
|
matrices.push();
|
||||||
matrices.multiply(RotationAxis.POSITIVE_Z.rotationDegrees(-45));
|
matrices.multiply(RotationAxis.POSITIVE_X.rotationDegrees(90));
|
||||||
matrices.multiply(RotationAxis.NEGATIVE_X.rotationDegrees(45 + cameraEntity.getYaw(tickDelta)));
|
matrices.multiply(RotationAxis.NEGATIVE_Z.rotationDegrees(cameraEntity.getYaw(tickDelta) - 25));
|
||||||
matrices.multiply(RotationAxis.POSITIVE_Z.rotationDegrees(-cameraEntity.getPitch(tickDelta)));
|
matrices.multiply(RotationAxis.POSITIVE_Y.rotationDegrees(-cameraEntity.getPitch(tickDelta)));
|
||||||
|
|
||||||
|
|
||||||
new SphereModel(40, 40, DrawableUtil.PI * 0.25F).render(matrices, buffer, light, 0, radius - 0.1F, 0.9F, 0.9F, 1, 0.3F);
|
new SphereModel(40, 40, DrawableUtil.PI * 0.25F).render(matrices, buffer, light, 0, radius - 0.1F, 0.9F, 0.9F, 1, 0.3F);
|
||||||
matrices.pop();
|
matrices.pop();
|
||||||
|
|
Loading…
Reference in a new issue