Godot intro
May 29, 2020
gamedev
Godot cheat sheet
_ready() is called when the node and all of its children enter the scene
_init() is the constuctor
idle processing : _process() (will be called on every frame) can toggled on/off with set_process()
delta parameter contains time elapsed in seconds as float