Tagged Questions
0
votes
1answer
149 views
Android OpenGL ES Dynamic fog color
I'm using the following method to set fog,
public void set_fog(float[] fc){
gl.glEnable(GL10.GL_FOG);
{
gl.glFogf(GL10.GL_FOG_MODE, GL10.GL_EXP2);
...
1
vote
2answers
716 views
How to create a 'fog of war' bitmap overlay in Android
I have a simple 2D game with a handful of characters which move around the screen. I'd like to create a fog of war, whereby only the background around each character is visible.
Hopefully that's ...