update resources

This commit is contained in:
QIDI TECH
2025-08-01 14:48:54 +08:00
parent 5effa59bd0
commit e3f49c2fb5
140 changed files with 964 additions and 386 deletions

View File

@@ -1,11 +1,11 @@
#version 110
uniform sampler2D Texture;
uniform sampler2D s_texture;
varying vec2 Frag_UV;
varying vec4 color;
void main()
{
gl_FragColor = color * texture2D(Texture, Frag_UV.st);
gl_FragColor = color * texture2D(s_texture, Frag_UV.st);
}