very good progress, next up: tripping and starting the game

This commit is contained in:
Tabby 2025-05-15 15:28:16 +10:00
parent 8be34b6c12
commit f16d046a6c
14 changed files with 206 additions and 19 deletions

20
games/platformer/talky.gd Normal file
View file

@ -0,0 +1,20 @@
extends Area2D
class_name Event
enum Type{
Chat,
Item
}
@export var type : Type
@export_multiline var text : String
@export var texture : Texture
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
pass