1
0
Fork 0
mirror of https://github.com/tonytins/dressupzack synced 2025-05-05 13:34:48 -04:00
dressupzack/scripts/character.gd
Tony Bark 6d75d04fc3 Further simplified design
- Removed a tone of bloat
- Use simple arrows to scroll through items instead of drag-and-drop
2024-01-16 08:01:06 -05:00

12 lines
274 B
GDScript

@tool
extends Node2D
@onready var _eyes = $Eyes
@onready var _tail = $Tail
@onready var _mouth = $Mouth
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
_eyes.play("default")
_tail.play("default")
_mouth.play("default")