I want to know if there are a way to acess other nodes and their things easily because I am very dependent of auto-completion and when I want to acess, it doesn't appears. For example:
I have a node called cow and another called bird (cow is child of main and bird is child of tree that is child of main).
cow.gd:
extends Node2D
var _life = 100
func _ready():
# I need to do something?
bird.gd:
extends Node2D
var _test = "something"
func _ready():
# Something
Now if I want to acess one from the other and its vars and functions. What I need to do?