9 lines
235 B
GDScript
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)
|