SlimeoosOdyssey/godot/tests/test_grape_man_animation.gd

17 lines
244 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()
2023-08-19 11:32:30 -06:00
func _on_hold_pressed():
$grape_man.hold()