Fixed icosphere generator

This commit is contained in:
Anuken
2025-10-08 08:14:57 +09:00
parent 65c7acb31c
commit fd0d864cb8
2 changed files with 10 additions and 4 deletions

View File

@@ -8,6 +8,6 @@ uniform mat4 u_trans;
varying vec4 v_col;
void main(){
v_col = a_color;
gl_Position = u_proj * u_trans * a_position;
v_col = a_color;
gl_Position = u_proj * u_trans * a_position;
}