How do i apply shader on texture
Asked Answered
H

2

0

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

Holily answered 7/7, 2022 at 12:45 Comment(0)
H
0

You can just multiply the two textures.

COLOR = texture(TEXTURE,UV) * vec4(smoke_fbm);
Hamulus answered 7/7, 2022 at 13:6 Comment(0)
H
0

Hamulus thanks! 😚

Holily answered 7/7, 2022 at 13:12 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.