SlimeoosOdyssey/godot/tests/test_grape_man_animation.gd

17 lines
290 B
GDScript3
Raw Permalink Normal View History

2023-08-19 01:31:24 -06:00
extends Node3D
2023-08-19 14:49:36 -06:00
func _on_walk_empty_pressed():
$grape_man.walk_empty()
2023-08-19 01:31:24 -06:00
2023-08-19 14:49:36 -06:00
func _on_walk_hold_pressed():
$grape_man.walk_hold()
func _on_idle_empty_pressed():
$grape_man.idle_empty()
func _on_idle_hold_pressed():
$grape_man.idle_hold()
2023-08-19 01:31:24 -06:00
2023-08-19 14:49:36 -06:00
func _on_pickup_pressed():
$grape_man.pickup()