Closed farling42 closed 1 year ago
In Theatre.js, at line 1936, there is a test
if (texture) {
which should be a test for undefined
if (!texture) {
Do you know if this is currently tied to any of the open issues at the moment?
Yes, it fixes #125
Confirmed fixed. Will go and fix that line.
In Theatre.js, at line 1936, there is a test
which should be a test for undefined