File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -71,6 +71,7 @@ Particle::Particle(
71
71
m_material.setFlag (video::EMF_BACK_FACE_CULLING, false );
72
72
m_material.setFlag (video::EMF_BILINEAR_FILTER, false );
73
73
m_material.setFlag (video::EMF_FOG_ENABLE, true );
74
+ m_material.setFlag (video::EMF_ZWRITE_ENABLE, true );
74
75
m_material.MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL;
75
76
m_material.setTexture (0 , texture);
76
77
m_texpos = texpos;
@@ -119,8 +120,7 @@ void Particle::OnRegisterSceneNode()
119
120
120
121
void Particle::render ()
121
122
{
122
- // TODO: Render particles in front of water and the selectionbox
123
-
123
+ SceneManager->getParameters ()->setAttribute (scene::ALLOW_ZWRITE_ON_TRANSPARENT, true );
124
124
video::IVideoDriver* driver = SceneManager->getVideoDriver ();
125
125
driver->setMaterial (m_material);
126
126
driver->setTransform (video::ETS_WORLD, AbsoluteTransformation);
You can’t perform that action at this time.
1 commit comments
kilbith commentedon Feb 27, 2015
#2388