mirror of
https://github.com/tonytins/dressupzack
synced 2025-05-05 13:34:48 -04:00
- Removed a tone of bloat - Use simple arrows to scroll through items instead of drag-and-drop
12 lines
274 B
GDScript
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")
|