it works?

This commit is contained in:
Asuro
2025-02-08 01:46:25 +01:00
parent 60640a708f
commit b263c3aa82
19 changed files with 801 additions and 18 deletions

10
src/game/shaders/vert.sc Normal file
View File

@@ -0,0 +1,10 @@
$input a_position, a_color0
$output v_color0
#include "common.sh"
void main()
{
gl_Position = mul(u_modelViewProj, vec4(a_position, 1.0) );
v_color0 = a_color0;
}