A Dynamically Typed Python-based language. Zero Indexed

Concepts

Fundamental

Specific

Boilerplate

extends Node
 
func _ready():
	print("Hello World")
	
func _input(event):
	if event.is_action_pressed("my action name"):
		print("pressed")
	if event.is_action_released("my action name"):
		print("released")
		
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
	pass