PneumaticPlaything/Scripts/TurntableRedirector.gd
2025-08-14 15:18:48 -07:00

9 lines
235 B
GDScript

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)