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
I'm running my Bevy projects via Sublime Text, which doesn't have a real terminal, only a super basic plaintext log.
The problem is that naga_oil uses ANSI colors on non-WASM targets unconditionally, without checking whether the terminal is compatible. In my case TERM is undefined, and I'm running std::env::set_var("NO_COLOR", "1") in main, but I still get ANSI color output that makes WGSL errors completely unreadable:
The text was updated successfully, but these errors were encountered:
I'm running my Bevy projects via Sublime Text, which doesn't have a real terminal, only a super basic plaintext log.
The problem is that naga_oil uses ANSI colors on non-WASM targets unconditionally, without checking whether the terminal is compatible. In my case
TERM
is undefined, and I'm runningstd::env::set_var("NO_COLOR", "1")
inmain
, but I still get ANSI color output that makes WGSL errors completely unreadable:The text was updated successfully, but these errors were encountered: