Browse Source

ambient scales ibl
so default to 1,1,1, not 1/3rds

AzaezelX 1 năm trước cách đây
mục cha
commit
456334fc55
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      Engine/source/environment/sun.cpp

+ 1 - 1
Engine/source/environment/sun.cpp

@@ -61,7 +61,7 @@ Sun::Sun()
    mTypeMask = EnvironmentObjectType | LightObjectType | StaticObjectType;
 
    mLightColor.set(0.7f, 0.7f, 0.7f);
-   mLightAmbient.set(0.3f, 0.3f, 0.3f);
+   mLightAmbient.set(1.0f, 1.0f, 1.0f);
    mBrightness = 1.0f;
    mSunAzimuth = 0.0f;
    mSunElevation = 35.0f;