Skip to content

Commit

Permalink
Fix particles draworder
Browse files Browse the repository at this point in the history
  • Loading branch information
BlockMen committed Feb 21, 2015
1 parent 3998a1f commit c09d026
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/particles.cpp
Expand Up @@ -71,6 +71,7 @@ Particle::Particle(
m_material.setFlag(video::EMF_BACK_FACE_CULLING, false);
m_material.setFlag(video::EMF_BILINEAR_FILTER, false);
m_material.setFlag(video::EMF_FOG_ENABLE, true);
m_material.setFlag(video::EMF_ZWRITE_ENABLE, true);
m_material.MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL;
m_material.setTexture(0, texture);
m_texpos = texpos;
Expand Down Expand Up @@ -119,8 +120,7 @@ void Particle::OnRegisterSceneNode()

void Particle::render()
{
// TODO: Render particles in front of water and the selectionbox

SceneManager->getParameters()->setAttribute(scene::ALLOW_ZWRITE_ON_TRANSPARENT, true);
video::IVideoDriver* driver = SceneManager->getVideoDriver();
driver->setMaterial(m_material);
driver->setTransform(video::ETS_WORLD, AbsoluteTransformation);
Expand Down

1 comment on commit c09d026

@kilbith
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.