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/Scripts/Obstacles/ScrollingBlock.gd

13 lines
317 B
GDScript3
Raw Normal View History

2020-10-03 18:27:59 +00:00
extends ExtendedKinematicBody2D
class_name ScrollingBlock
export(Vector2) var scroll_velocity: Vector2 = Vector2(-10, 0)
func _physics_process(delta):
# FIXME: This doesn't really work... Any other things we could try?
var collision = move_and_collide(scroll_velocity * delta)
if collision:
print(collision)