Skip to content
Snippets Groups Projects
Commit adcf2d98 authored by David Parks's avatar David Parks
Browse files

NORSPEC-72 Set default value of glossiness to 0.2

parent 1f739cb7
No related branches found
No related tags found
No related merge requests found
...@@ -1309,7 +1309,22 @@ void LLPanelFace::updateMaterial() ...@@ -1309,7 +1309,22 @@ void LLPanelFace::updateMaterial()
if (!mMaterial) if (!mMaterial)
{ {
mMaterial = LLMaterialPtr(new LLMaterial()); mMaterial = LLMaterialPtr(new LLMaterial());
//set defaults according to UI spec
mMaterial->setSpecularLightColor(LLColor4U::white);
mMaterial->setSpecularLightExponent((U8) (255*0.2f));
mMaterial->setEnvironmentIntensity(0);
mMaterial->setDiffuseAlphaMode(LLMaterial::DIFFUSE_ALPHA_MODE_NONE);
mMaterial->setAlphaMaskCutoff(0);
} }
else
{
mMaterial->setSpecularLightColor(getChild<LLColorSwatchCtrl>("shinycolorswatch")->get());
mMaterial->setSpecularLightExponent((U8)(255*getChild<LLUICtrl>("glossiness")->getValue().asReal()));
mMaterial->setEnvironmentIntensity((U8)(255*getChild<LLUICtrl>("environment")->getValue().asReal()));
mMaterial->setDiffuseAlphaMode(getChild<LLComboBox>("combobox alphamode")->getCurrentIndex());
mMaterial->setAlphaMaskCutoff((U8)(getChild<LLUICtrl>("maskcutoff")->getValue().asInteger()));
}
if (bumpiness == BUMPY_TEXTURE) if (bumpiness == BUMPY_TEXTURE)
{ {
LL_DEBUGS("Materials") << "Setting bumpy texture, bumpiness = " << bumpiness << LL_ENDL; LL_DEBUGS("Materials") << "Setting bumpy texture, bumpiness = " << bumpiness << LL_ENDL;
...@@ -1346,11 +1361,7 @@ void LLPanelFace::updateMaterial() ...@@ -1346,11 +1361,7 @@ void LLPanelFace::updateMaterial()
mMaterial->setSpecularRepeat(1.0f,1.0f); mMaterial->setSpecularRepeat(1.0f,1.0f);
mMaterial->setSpecularRotation(0.0f); mMaterial->setSpecularRotation(0.0f);
} }
mMaterial->setSpecularLightColor(getChild<LLColorSwatchCtrl>("shinycolorswatch")->get());
mMaterial->setSpecularLightExponent((U8)(255*getChild<LLUICtrl>("glossiness")->getValue().asReal()));
mMaterial->setEnvironmentIntensity((U8)(255*getChild<LLUICtrl>("environment")->getValue().asReal()));
mMaterial->setDiffuseAlphaMode(getChild<LLComboBox>("combobox alphamode")->getCurrentIndex());
mMaterial->setAlphaMaskCutoff((U8)(getChild<LLUICtrl>("maskcutoff")->getValue().asInteger()));
LL_DEBUGS("Materials") << "Updating material: " << mMaterial->asLLSD() << LL_ENDL; LL_DEBUGS("Materials") << "Updating material: " << mMaterial->asLLSD() << LL_ENDL;
LLSelectMgr::getInstance()->selectionSetMaterial( mMaterial ); LLSelectMgr::getInstance()->selectionSetMaterial( mMaterial );
} }
......
...@@ -394,7 +394,7 @@ ...@@ -394,7 +394,7 @@
max_value="1" max_value="1"
follows="left|top" follows="left|top"
height="19" height="19"
initial_value="0" initial_value="0.2"
layout="topleft" layout="topleft"
top_delta="-4" top_delta="-4"
left_pad="10" left_pad="10"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment