mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 20:50:06 +00:00
Change negative threshold values to act as inverted threshold
This commit is contained in:
parent
dcea34118f
commit
3562edcb7a
1 changed files with 3 additions and 1 deletions
|
|
@ -21,7 +21,9 @@ smooth out vec4 color;
|
||||||
void main()
|
void main()
|
||||||
{
|
{
|
||||||
if (gsIn[0].displayed != 0 &&
|
if (gsIn[0].displayed != 0 &&
|
||||||
(gsIn[0].threshold <= 0 || // If Threshold: 0 was specified, no threshold
|
(gsIn[0].threshold == 0 || // If Threshold: 0 was specified, no threshold
|
||||||
|
uMapDistance == 0 || // If uMapDistance is zero, threshold is disabled
|
||||||
|
(gsIn[0].threshold < 0 && -(gsIn[0].threshold) <= uMapDistance) || // If Threshold is negative and below current map distance
|
||||||
gsIn[0].threshold >= uMapDistance || // If Threshold is above current map distance
|
gsIn[0].threshold >= uMapDistance || // If Threshold is above current map distance
|
||||||
gsIn[0].threshold >= 999) && // If Threshold: 999 was specified (or greater), no threshold
|
gsIn[0].threshold >= 999) && // If Threshold: 999 was specified (or greater), no threshold
|
||||||
(gsIn[0].timeRange[0] == 0 || // If there is no start time specified
|
(gsIn[0].timeRange[0] == 0 || // If there is no start time specified
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue