TestGame/assets/levels/level_1.gd

19 lines
426 B
GDScript3
Raw Normal View History

2024-12-27 21:00:07 +01:00
extends Node3D
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
pass
func _on_area_3d_area_entered(area: Area3D) -> void:
if area.is_in_group("Player"):
#get_tree().change_scene_to_packed()
print("Hit")
print(area)