Skip to content

Commit

Permalink
Merge branch '1.20.3' into 1.20.5
Browse files Browse the repository at this point in the history
  • Loading branch information
IMS212 committed Dec 31, 2023
2 parents 800f318 + a994da4 commit dcc0993
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,10 @@ float _material_alpha_cutoff(uint material) {
void _vert_init() {
_vert_position = (vec3(a_PosId.xyz) * 4.8828125E-4f + -8.0f);
_vert_tex_diffuse_coord = (a_TexCoord * 1.52587891E-5f);
""" +
"_vert_tex_diffuse_coord = (a_TexCoord * " + (1.0f / 32768.0f) + ");" +
"""
_vert_tex_light_coord = a_LightCoord;
_vert_color = a_Color;
_draw_id = (a_PosId.w >> 8u) & 0xffu;
Expand Down

0 comments on commit dcc0993

Please sign in to comment.