jup
1
Godot Version
4.0
Question
yeah, error message in title. It worked yesterday without any errors. Woke up and started the program and get the error
I’m pretty new to this so if possible please explain it as if I’m an idiot.
Any and all help is appreciated :))
Please share your code when asking a question. Usually it’s difficult - if not impossible - to answer questions that don’t include code.
The problem you’re facing is because you have some script that starts like this:
class_name SomeName extends Foo # Substitute actual base class for `Foo`
And then made that script/scene an autoload. You can’t include class_name
in an autoload. i.e. change the code to just this:
extends Foo # Or whatever
1 Like