Hello! I am currently working on another game project and I like to ask if there is any other way to access an another Node's GDScript to access the variable or property?
For example, I am working on an elevator, there are two objects, one is the Area2D Object with GDScript that allows the object to move out of the elevator and a Switch Object with GDScript as well that activates an animation and triggers a Variable boolean function to tell the Area2D not to let the player out until the animation is done.
Now this is where the "Switch" GDScript needs to access the Area2D's GDScript, where it can access the Variable to tell the player when to exit the elevator or not.
Is there any way whatsoever to let an object tap into another object's variable script?