🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

thermal camera in OpenGL

Started by
0 comments, last by lc_overlord 17 years, 7 months ago
How do I implement a thermal camera?
Advertisement
the most common method is to just texture the world in thermal camera colors, render it into a FBO(or similar) and then perhaps add a few filters on top of that(noise, blur and maybe false color mapping).
any other effects you may see in a game are just a few clever hacks, like particle systems to simulate heat around hot objects or a creative use of vertex color to simulate heat spreading around surfaces near a hot object, or maybe render things slightly transparent to a few hotter objects, like people (the latest rainbow six games use this effect pretty often).

There is no correct way of doing this, so just be a bit creative.

This topic is closed to new replies.

Advertisement