Location shaders: proper fix #321
This commit is contained in:
parent
d5ebf43e3d
commit
2872ce94a3
@ -40,9 +40,7 @@ void main() {
|
|||||||
// - subtract inner from outer to create the outline
|
// - subtract inner from outer to create the outline
|
||||||
// - multiply by viewshed
|
// - multiply by viewshed
|
||||||
// - add center point
|
// - add center point
|
||||||
a = max(d, (a - (b + c)) + c);
|
a = max(d, (a - (b + c)) + c) + (u_mode == 0 ? c : 0.0);
|
||||||
if (u_mode == 0)
|
|
||||||
a += c;
|
|
||||||
gl_FragColor = u_color * a;
|
gl_FragColor = u_color * a;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user