Armature: Fix flickering outline on planar custom bones.

This commit is contained in:
Clément Foucault 2018-06-07 13:38:10 +02:00
parent 508e34d0bf
commit c63f804222
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ void main(void)
return;
/* Don't outline if concave edge. */
if (dot(n0, v13) > 0.0)
if (dot(n0, v13) > 0.0001)
return;
vec2 thick = vColSize[0].w * (lineThickness / viewportSize);