修复bug

This commit is contained in:
unanmed 2023-08-28 16:12:12 +08:00
parent 38e24dd9bc
commit 2b2b801f13

View File

@ -225,7 +225,7 @@ const sample8 = buildAnimtedSample(
void main() {
float alpha = clamp(distance(vec2(0, 0), vpos.xy) - 0.6, 0.0, 1.0) * uStrength;
vec4 tex = texture2D(uSampler, vTextureCoord);
gl_FragColor = vec4(color1.rgb * (1.0 - alpha), 1.0);
gl_FragColor = vec4(tex.rgb * (1.0 - alpha), 1.0);
}
`,
effect => {