This repository has been archived on 2022-01-09. You can view files and clone it, but cannot push or open issues/pull-requests.
liblast/Game/Ball.gd

8 lines
149 B
GDScript

extends Area3D
func _physics_process(_delta):
translate_object_local(Vector3.FORWARD * -0.005)
func _on_Area3D_body_entered(_body):
queue_free()