Godot Version
Godot 4
Question
am dealing two issues
First is that it won’t let me drag a node in a script any more:
Second, it won’t save when I add new lines of code:
Godot 4
am dealing two issues
First is that it won’t let me drag a node in a script any more:
Second, it won’t save when I add new lines of code:
ok for the second issue I think its bc of the error in the script.
Your main scene seems to be of type Node
, but – as the error message states – the script you have attached to it doesn’t inherit from that type.
Make sure that at the top of your script is the following line:
extends Node
(or change the type of the root node of your scene).