This commit is contained in:
Crizomb 2025-08-02 23:51:48 +02:00
parent ad95711535
commit 2e310f4053
25 changed files with 852 additions and 74 deletions

View file

@ -0,0 +1,14 @@
extends Area3D
class_name CheckPoint
@export var check_point_id : int = 0
func _on_body_entered(body: Node3D) -> void:
if body is not Car:
return
CheckPointManager.checkPointEnter(check_point_id)