mirror of
https://github.com/Steffo99/looping-for-loops.git
synced 2024-11-23 00:24:22 +00:00
13 lines
403 B
GDScript
13 lines
403 B
GDScript
extends ScrollParent
|
|
class_name ConveyorScrollParent
|
|
|
|
|
|
onready var conveyor_belt: ConveyorBelt = null
|
|
|
|
|
|
func _enter_tree():
|
|
conveyor_belt = get_tree().current_scene.get_node("ConveyorBelt")
|
|
conveyor_belt.connect("cb_speed_changed", self, "_on_ConveyorBelt_cb_speed_changed")
|
|
|
|
func _on_ConveyorBelt_cb_speed_changed(old, new):
|
|
scroll_velocity.x = -conveyor_belt.get_relative_cb_speed(parent.position)
|