Hello
Guest
Register
Login
1 Hour
1 Day
1 Week
1 Month
Forever
LWJGL 3.3.2 released
Menu
Home
Help
Search
Login
Register
go
LWJGL Forum
Programming
OpenGL
Fading effect
« previous
next »
Print
Pages: [
1
]
Fading effect
2 Replies
7581 Views
Ahzraei
4
Fading effect
«
on:
December 03, 2005, 04:03:52 »
I need to have a fade effect on a texture mapped to a quad; in theory, it should increase the alpha value of the entire texture over an interval of time until the texture is invisible. I've enabled alpha blending and I can draw transparent textures (PNGs with an alpha channel), but I haven't figured out how to change the alpha of a texture in the code before I draw it. How can I do it?
Logged
Orangy Tang
199
Fading effect
«
Reply #1 on:
December 03, 2005, 14:47:36 »
Vertex colours will be modulated with the texture colour by default. Change your vertex colours' alpha to something other than 1 and you should fade the whole thing (eg. glColor4f(1.0f, 1.0f, 1.0f, 0.5f); ).
Logged
Ahzraei
4
Fading effect
«
Reply #2 on:
December 04, 2005, 19:53:18 »
Thanks; that works pretty well. I've had to optimize how many times I use glColor4f though, it can slow things down in the game I'm coding (which uses a lot of two-dimensional textures).
Logged
Print
Pages: [
1
]
« previous
next »