mirror of
https://github.com/Steffo99/looping-for-loops.git
synced 2024-11-26 01:54:21 +00:00
14 lines
353 B
GDScript3
14 lines
353 B
GDScript3
|
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 = new
|