#Can't use built in functions when they're not in func _ready():
5 messages · Page 1 of 1 (latest)
that's correct - scripts in GDScript are not like in python, lua or javascript where they just run top to bottom
they are classes, so you can only declare variables and functions inside of them, not statements
So I can only use functions inside the _ready function?