Skip to content

Commit

Permalink
Azure aura particles now render again
Browse files Browse the repository at this point in the history
  • Loading branch information
Azzyypaaras committed Oct 18, 2024
1 parent 3696997 commit 08c55fc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ public void buildGeometry(VertexConsumer vertexConsumer, Camera camera, float ti
float n = this.getMaxV();
int o = this.getBrightness(tickDelta);
vertexConsumer.vertex(vector3fs[0].x(), vector3fs[0].y(), vector3fs[0].z()).texture(l, n).color(this.red, this.green, this.blue, 0).light(o).next();
vertexConsumer.vertex(vector3fs[1].x(), vector3fs[1].y(), vector3fs[1].z()).texture(l, m).color(this.red, this.green, this.blue, 0).light(o).next();
vertexConsumer.vertex(vector3fs[2].x(), vector3fs[2].y(), vector3fs[2].z()).texture(k, m).color(this.red, this.green, this.blue, 0).light(o).next();
vertexConsumer.vertex(vector3fs[1].x(), vector3fs[1].y(), vector3fs[1].z()).texture(l, m).color(this.red, this.green, this.blue, this.alpha).light(o).next();
vertexConsumer.vertex(vector3fs[2].x(), vector3fs[2].y(), vector3fs[2].z()).texture(k, m).color(this.red, this.green, this.blue, this.alpha).light(o).next();
vertexConsumer.vertex(vector3fs[3].x(), vector3fs[3].y(), vector3fs[3].z()).texture(k, n).color(this.red, this.green, this.blue, 0).light(o).next();
}

Expand Down

0 comments on commit 08c55fc

Please sign in to comment.