Hey, I just need some help hear real quick. I can never seem to get lighting to work. Here's my program (without textures) that needs to use lighting:
BackDrop Off
` Set display mode
Set Display Mode 800, 600, 32 : Hide Mouse
` load texture
Load Image "C:\Documents and Settings\story.bmp", 1
Set Image Colorkey 0, 0, 0
Load Image "C:\Documents and Settings\Desktop\storybkg.bmp", 2
` create background
Make Object Plain 1, 800, 600
Texture Object 1, 2
Scale Object 1, 245, 255, 600
Rotate Object 1, 9, 0, 0
Position Object 1, 0, 0, 150
` create scrolling text plain
Make Object Plain 2, 800, 600
Position Object 2, 0, 0, -425
Rotate Object 2, 65, 0, 0
Scale Object 2, 150, 400, 100
Set Object Transparency 2, 1
Texture Object 2, 1
Scroll Object Texture 2, 0, +.35
` create light
Make Light 1
Set Light Range 1, 50
Position Light 1, 5, 5, 5
Do
Scroll Object Texture 2, 0, +.0002
Loop
Wait key
Any ideas? Thanks in advance for the help