So I have all these classes as References which I call with Classname.new(), this has worked perfectly fine so far but now I have created a new class called "Playback" and this one cannot be found outside of a Singleton. Any Idea how I could fix this?
WAV.new() # class just like Playback -> found, no error
Global.Playback.new() -> the class I just created called from global scope -> no error
Playback.new() -> the new class from a normal node script -> error