i couldnt use COLOR = texture(TEXTURE,UV);
because color is already used sorry if this is a stupid question i am very new to shaders
basically i want to assign the shader to the texture on the right
if this isnt possible how can i reshape my shader to look like that
How do i apply shader on texture
Asked Answered
You can just multiply the two textures.
COLOR = texture(TEXTURE,UV) * vec4(smoke_fbm);
Hamulus thanks! 😚
© 2022 - 2024 — McMap. All rights reserved.