Tagged Questions
The lights tag has no wiki summary.
3
votes
3answers
1k views
OpenGL: Rendering more than 8 lights, how?
How should I implement more than 8 lights in OpenGL?
I would like to render unlimited amounts of lights efficiently.
So, whats the preferred method for doing this?
1
vote
1answer
52 views
how can we make spot lights
i need to draw street lights, but it is illuminating the entire environment, i couldnt make it seem like a spot light. The code below is the one i tried
glEnable(GL_LIGHTING);
glEnable(GL_LIGHT0) ...
1
vote
3answers
165 views
Can't seem to control dmx lights via lighting desk
2 questions
1: Q light software...
I have a Showtec Showmaster 24 which is a DMX controller with 24 channels. I have plugged it's MIDI input into my PC using a USB/MIDI cable. QLC picks up the MIDI ...
1
vote
3answers
201 views
Is there any way to turn on/off Num, Caps and Scroll Lock lights?
Is there any way to turn on/off Num, Caps and Scroll Lock lights? It's just for fun and my idea is to do something like disco.
1
vote
1answer
121 views
OpenGL lighting with Cg
I'm already familiar with OpenGL's native lights.
My question is how do I go about rendering lights with Cg?
Do I still need to declare normal OpenGL lights and then use Cg to render the light?Or is ...
1
vote
1answer
992 views
Android - turn off hardware key lights
Inside my app, I need a way to turn off the lights on the standard Android phone keys (Home, Menu, Back, and Search) - how can I do this programmatically?
1
vote
1answer
91 views
Div Lights Fade Script - Not working on Mac?
I have a little javascript/css script that fades my website to black, except for the video in the middle, to give a sort of theatre effect
Example : http://www.animefushigi.com/bleach-episode-293
...
1
vote
3answers
210 views
Calculating how visible an object is in a 3D-scene for use in game logic/AI
I am starting a game project which will allow characters to hide in dark areas. Hiding in a dark corner should make it harder for other characters to see you.
What I need is a way to calculate how ...
0
votes
1answer
128 views
Directional lights in WebGL and camera movement
I have an object in the middle of the scene. I also have a camera and one directional light. I can move the camera around the object but if I set the direction of the light to (0, -1, 0), comming from ...
0
votes
1answer
332 views
Does textures drawn with glDrawTexfOES are affected by lights?
currently, I use glDrawArrays to render texture in simple quads. I hope increase framerate by using glDrawTexfOES instead (all my sprites have the same z position).
Before doing this work I would like ...
0
votes
1answer
958 views
Lightmap with multitexturing, disabling lighting for one of the textures?
How i can disable lighting for only one of the textures in this multitexturing scheme? I tried to use glDisable(GL_LIGHTING) and glEnable(GL_LIGHTING) but it doesnt remember the settings when i render ...