Skip to content
Snippets Groups Projects
Commit 7f19cd3d authored by MaxED's avatar MaxED
Browse files

Let's see if that fixes Vertex Handles rendering in Visual mode...

parent dcaa60f1
No related branches found
No related tags found
No related merge requests found
......@@ -634,6 +634,12 @@ namespace CodeImp.DoomBuilder.Rendering
private void RenderVertices() {
if(visualvertices == null) return;
graphics.Device.SetRenderState(RenderState.AlphaBlendEnable, true);
graphics.Device.SetRenderState(RenderState.AlphaTestEnable, false);
graphics.Device.SetRenderState(RenderState.ZWriteEnable, false);
graphics.Device.SetRenderState(RenderState.SourceBlend, Blend.SourceAlpha);
graphics.Device.SetRenderState(RenderState.DestinationBlend, Blend.SourceAlpha);
graphics.Shaders.World3D.BeginPass(16);
foreach(VisualVertex v in visualvertices) {
......@@ -658,6 +664,8 @@ namespace CodeImp.DoomBuilder.Rendering
// Done
graphics.Shaders.World3D.EndPass();
graphics.Shaders.World3D.SetModulateColor(-1);
graphics.Device.SetRenderState(RenderState.TextureFactor, -1);
}
//mxd
......
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