mirror of
https://github.com/Steffo99/looping-for-loops.git
synced 2024-11-22 16:14:22 +00:00
14 lines
403 B
GDScript
14 lines
403 B
GDScript
extends ScrollParent
|
|
class_name ConveyorScrollParent
|
|
|
|
|
|
var conveyor_belt: ConveyorBelt = null
|
|
|
|
|
|
func _ready():
|
|
conveyor_belt = get_tree().current_scene.get_node("ConveyorBelt")
|
|
_on_ConveyorBelt_cb_speed_changed(0, conveyor_belt.cb_speed)
|
|
conveyor_belt.connect("cb_speed_changed", self, "_on_ConveyorBelt_cb_speed_changed")
|
|
|
|
func _on_ConveyorBelt_cb_speed_changed(old, new):
|
|
scroll_velocity.x = -new
|