mirror of
https://github.com/tonytins/dressupzack
synced 2025-05-05 21:34:49 -04:00
- Redesigned UI - Imported old theme - Switched to original character sprite - Simplified clothes
11 lines
268 B
GDScript
11 lines
268 B
GDScript
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")
|