初次提交

This commit is contained in:
2022-09-19 18:05:01 +08:00
commit 57051fc44b
5401 changed files with 325410 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
//焰火粒子着色器
precision mediump float;
uniform vec3 uColor;//粒子颜色
void main()
{
//给此片元颜色值
gl_FragColor = vec4(uColor,1.0);
}