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

Fixed, Visual mode: hitbox height of vertex handles was 2x higher than it's supposed to be.

parent 07ef6631
No related branches found
No related tags found
No related merge requests found
......@@ -60,8 +60,8 @@ namespace CodeImp.DoomBuilder.BuilderModes
SetPosition(pos);
float radius = DEFAULT_SIZE * General.Settings.GZVertexScale3D;
boxp1 = new Vector3D(pos.x - radius, pos.y - radius, pos.z - radius);
boxp2 = new Vector3D(pos.x + radius, pos.y + radius, pos.z + radius);
boxp1 = new Vector3D(pos.x - radius, pos.y - radius, (ceilingVertex ? pos.z - radius : pos.z));
boxp2 = new Vector3D(pos.x + radius, pos.y + radius, (ceilingVertex ? pos.z : pos.z + radius));
changed = false;
}
......
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