Make default direction when neither sun nor moon are up straight down instead of noon.
master
Graham Linden 2019-07-24 13:45:03 -07:00
parent 41ede77744
commit 53b71f0dc3
1 changed files with 1 additions and 1 deletions

View File

@ -1000,7 +1000,7 @@ LLVector3 LLSettingsSky::getLightDirection() const
return mMoonDirection;
}
return LLVector3::z_axis;
return -LLVector3::z_axis;
}
LLColor3 LLSettingsSky::getLightDiffuse() const