mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-04-04 15:06:44 +00:00
texture label
This commit is contained in:
parent
f9c13f3163
commit
021620e66d
1 changed files with 4 additions and 2 deletions
|
@ -213,7 +213,9 @@ namespace MWVR
|
||||||
|
|
||||||
// Define state set that allows rendering with transparency
|
// Define state set that allows rendering with transparency
|
||||||
osg::StateSet* stateSet = mGeometry->getOrCreateStateSet();
|
osg::StateSet* stateSet = mGeometry->getOrCreateStateSet();
|
||||||
stateSet->setTextureAttributeAndModes(0, menuTexture(), osg::StateAttribute::ON);
|
auto texture = menuTexture();
|
||||||
|
texture->setName("diffuseMap");
|
||||||
|
stateSet->setTextureAttributeAndModes(0, texture, osg::StateAttribute::ON);
|
||||||
stateSet->setMode(GL_BLEND, osg::StateAttribute::ON);
|
stateSet->setMode(GL_BLEND, osg::StateAttribute::ON);
|
||||||
stateSet->setAttributeAndModes(new osg::BlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA));
|
stateSet->setAttributeAndModes(new osg::BlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA));
|
||||||
stateSet->setRenderingHint(osg::StateSet::TRANSPARENT_BIN);
|
stateSet->setRenderingHint(osg::StateSet::TRANSPARENT_BIN);
|
||||||
|
@ -226,7 +228,7 @@ namespace MWVR
|
||||||
|
|
||||||
osg::ref_ptr<osg::LightModel> lightmodel = new osg::LightModel;
|
osg::ref_ptr<osg::LightModel> lightmodel = new osg::LightModel;
|
||||||
lightmodel->setAmbientIntensity(osg::Vec4(1.0, 1.0, 1.0, 1.0));
|
lightmodel->setAmbientIntensity(osg::Vec4(1.0, 1.0, 1.0, 1.0));
|
||||||
stateSet->setAttributeAndModes(lightmodel, osg::StateAttribute::ON);
|
stateSet->setAttributeAndModes(lightmodel, osg::StateAttribute::ON | osg::StateAttribute::OVERRIDE);
|
||||||
SceneUtil::ShadowManager::disableShadowsForStateSet(stateSet);
|
SceneUtil::ShadowManager::disableShadowsForStateSet(stateSet);
|
||||||
|
|
||||||
mGeometry->setStateSet(stateSet);
|
mGeometry->setStateSet(stateSet);
|
||||||
|
|
Loading…
Reference in a new issue