fix labels that do not match program style

This commit is contained in:
Persephone Bubblegum-Holiday 2025-08-14 15:18:48 -07:00
parent 5f157f386f
commit 3778dfb3f9
16 changed files with 56 additions and 43 deletions

View file

@ -0,0 +1,9 @@
extends Node
@export var bot_path: String
func _movement_in(movement, rate):
get_node("../%s" % bot_path)._movement_in(movement, rate)
func _movement_out(movement, rate):
get_node("../%s" % bot_path)._movement_out(movement, rate)