You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The user commented a use of the variable t, which deleted the call to march although it has a side-effect and modifies glow. We'd need a proper way to track side-effects.
The text was updated successfully, but these errors were encountered:
The behavior is documented (https://github.com/laurentlb/Shader_Minifier#unused-local-variables), but it can be risky to remove the initialization code of a variable that is not used.
Code example:
The user commented a use of the variable
t
, which deleted the call tomarch
although it has a side-effect and modifiesglow
. We'd need a proper way to track side-effects.The text was updated successfully, but these errors were encountered: