Tagged Questions
2
votes
3answers
824 views
Recommended 3D Programming Aspects for Light/Laser Show Simulator?
Hey guys, I would like to develop a light/laser show editor and simulator, and for this of course I am going to learn some graphics programming. I am thinking about using C# and XNA.
I was just ...
1
vote
1answer
40 views
OpenGL - Light values and position
This is how i have declared my light values and their positions
is this correct or is there another more officiant way?
// Lighting values
GLfloat greenLight[] = { 0.0f, 0.6f, 0.0f, 1.0f };
...
1
vote
1answer
382 views
Deferred shading, normal mapping and self-shadowing surfaces pointing away from light
I bumped into a problem with normal mapping and surfaces pointing away from light. These surfaces should not be lit at all since they are not facing the light. However, it is possible that quite a few ...
1
vote
2answers
548 views
Issue with Android OpenGLES lighting
Hey all,
I'm writing a little 3D engine for android to better learn the platform and opengl. I hope to eventually use it as a base for little 3D games.
I'm trying to implement lighting right ...
0
votes
0answers
31 views
Opengl: How do I specify a directional vector for lighting in opengl?
This doesn't make sense to me at all, but anyways, lets say we have this:
Glfloat dir[] = { 0.0, -1.0f, 0.0f, 0.0f };
glLightfv(GL_LIGHT0, GL_POSITION, dir);
Guess what? The light rays point UP, ...
0
votes
1answer
118 views
XNA - 3D game - Apply a light to all models
I want to make an XNA game with 3D graphics, and one thing has me wondering. Say I have 10 Models in my scene, and I want to draw them all with the same light source, like a directional light. Now I ...
0
votes
0answers
76 views
Issue with scaling and lights in OpenGL ES (Android)
I've been working on developing a 3D model viewer app for Android (partially for a class, partially to start learning OpenGL). I've made a good bit of progress, but I ran into a bit of an issue ...
0
votes
3answers
114 views
Please help with 3d shading/lighting
How do you guys handle shading in a 3d game? I have a directional light source that shades one side of a tree made of cubes. The remaining 3 sides all get ambient shading only. So the 3d effect is ...
0
votes
3answers
420 views
Per-model local rotation breaks openGL Lighting
I'm having trouble with OpenGL lighting. My issue is this: When the object has 0 rotation, the lighting is fine- otherwise the lighting works, but rotates with the object, instead of staying fixed in ...