pickaxe to drop ores when they were mined

This commit is contained in:
minjaesong
2023-10-11 17:59:10 +09:00
parent e63300339e
commit 552cfd5f06
14 changed files with 155 additions and 43 deletions

View File

@@ -1,14 +1,14 @@
in vec4 a_position;
in vec4 a_color;
in vec4 a_generic;
in vec2 a_texCoord0;
in highp vec4 a_position;
in highp vec4 a_color;
in highp vec4 a_generic;
in highp vec2 a_texCoord0;
uniform mat4 u_projTrans;
out vec4 v_color;
out vec2 v_texCoords;
out vec4 v_generic;
out mediump vec4 v_color;
out highp vec2 v_texCoords;
out highp vec4 v_generic;
void main() {
v_color = a_color;