where is reference about "func _ready" function?(main routine)

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By bgegg

func _ready():
set_process(true)

i search in official reference about func _ready and set_process.

but i can not found reference.

where is reference of main routine?

thanks.I have to study

bgegg | 2019-03-26 21:02

:bust_in_silhouette: Reply From: Jack Draak

Good question.

I found this, and basically only this:
The _ready() function is called when the node, and all its children, enters the active scene. Note: _ready() is not the constructor; the constructor is instead _init().

:bust_in_silhouette: Reply From: kidscancode

See this section in the docs: