Alessandro Posted September 15, 2010 Share Posted September 15, 2010 Hello, I need to change directional light color in order to simulate the atmosphere colors in the morning and evening (day/night cycle). I used the following code, and putted in Update() event in the light self: light_1.light.color = Vec3(myRed, myGreen, myBlue) The problem is, every some seconds, I see in the screen something like a flash white (imagine a lighting in the sky, which enlighten all the environment for a few frames). Is my code correct? Is there any other way to simulate color changing? Thank you for your help! Quote Link to comment Share on other sites More sharing options...
Canardia Posted September 15, 2010 Share Posted September 15, 2010 A light is Vec4, so probably your alpha value gets random values since you use a Vec3. Quote ■ Ryzen 9 ■ RX 6800M ■ 16GB ■ XF8 ■ Windows 11 ■ ■ Ultra ■ LE 2.5 ■ 3DWS 5.6 ■ Reaper ■ C/C++ ■ C# ■ Fortran 2008 ■ Story ■ ■ Homepage: https://canardia.com ■ Link to comment Share on other sites More sharing options...
Alessandro Posted September 15, 2010 Author Share Posted September 15, 2010 A light is Vec4, so probably your alpha value gets random values since you use a Vec3. LOL I will try to use Vec4. Thank you for the suggestion! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.