Files
godot-git-plugin/demo/new_script.gd
2022-08-10 03:38:48 +05:30

13 lines
260 B
GDScript

extends Node
# Called when the node enters the scene tree for the first time.
func _ready():
print("Hello world!")
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
pass