SlimeoosOdyssey/godot/slime_shared.gd

13 lines
143 B
GDScript3
Raw Normal View History

2023-08-19 19:22:57 -06:00
extends CharacterBody3D
2023-08-19 20:18:07 -06:00
var is_holdable: bool = true
func _ready():
$slime.idle()
func walk():
$slime.walk()
func idle():
$slime.idle()