diff options
Diffstat (limited to 'scripts/wyvern_animation_handler.gd')
-rw-r--r-- | scripts/wyvern_animation_handler.gd | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/wyvern_animation_handler.gd b/scripts/wyvern_animation_handler.gd new file mode 100644 index 0000000..8cadc72 --- /dev/null +++ b/scripts/wyvern_animation_handler.gd @@ -0,0 +1,6 @@ +extends "res://scripts/base_animation_handler.gd" + +func _ready(): + idle = Rect2(384, 160, 16, 16) + attack = Rect2(400, 160, 16, 16) + update_texture() |