From cb40b3517a2dfac96c6733ce6e89e13822998cf9 Mon Sep 17 00:00:00 2001 From: MirceaKitsune Date: Tue, 23 Oct 2012 23:57:36 +0300 Subject: [PATCH] Fix material properties and allow lighting. Models should now be affected by light instead of being black --- src/content_cao.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/content_cao.cpp b/src/content_cao.cpp index 985f3cbbd..c0be4e4cd 100644 --- a/src/content_cao.cpp +++ b/src/content_cao.cpp @@ -1065,6 +1065,11 @@ public: m_prop.texture = "unknown_block.png"; video::IVideoDriver* driver = m_animated_meshnode->getSceneManager()->getVideoDriver(); m_animated_meshnode->setMaterialTexture(0, driver->getTexture(m_prop.texture.c_str())); + + // Set material flags and texture + video::SMaterial& material = m_animated_meshnode->getMaterial(0); + material.setFlag(video::EMF_LIGHTING, false); + material.setFlag(video::EMF_BILINEAR_FILTER, false); } } if(m_meshnode)