I was trying to prevent the change of certain properties of a node in tool mode, and most things I've tried haven't resulted in anything.
Right now I'm trying
func _set(property, value):
if(property == "transform/pos"):
set(property, Vector2(0, 0))
However this crashes Godot. -_-
Is there a more straightforward way that I'm overlooking?