SlimeoosOdyssey/godot/tests/test_grape_man_animation.gd

23 lines
250 B
GDScript3
Raw Normal View History

2023-08-19 01:31:24 -06:00
extends Node3D
func _on_pickup_pressed():
$grape_man.pickup()
func _on_drop_pressed():
$grape_man.drop()
func _on_idle_pressed():
$grape_man.idle()
func _on_walk_pressed():
$grape_man.walk()
func _on_hold_pressed():
$grape_man.hold()