1
Fork 0
mirror of https://github.com/Steffo99/looping-for-loops.git synced 2024-11-22 08:04:23 +00:00
looping-for-loops/Objects/ScrollingObjects/Utilities/ScrollParent.gd

14 lines
239 B
GDScript

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