1
Fork 0
mirror of https://github.com/Steffo99/looping-for-loops.git synced 2024-11-23 00:24:22 +00:00
looping-for-loops/Objects/ScrollingObjects/Utilities/ScrollParent.gd
2020-10-04 17:29:28 +02:00

14 lines
242 B
GDScript

extends Node
class_name ScrollParent
export(Vector2) var scroll_velocity: Vector2 = Vector2(-100, 0)
var parent = null
func _enter_tree():
parent = get_parent()
func _physics_process(delta):
parent.position += scroll_velocity * delta