now 'all' the file are in order

This commit is contained in:
BrixsBang 2025-09-17 18:11:23 +02:00
parent cdfe1089af
commit 5e392d259e
23 changed files with 23 additions and 23 deletions

20
Script/ball.gd Normal file
View file

@ -0,0 +1,20 @@
extends StaticBody3D
signal entrato
signal uscito
# 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
# se e "visibile nello schermo" emit ma emit anche se ce un muro davanti
func _on_visible_on_screen_notifier_3d_screen_entered() -> void:
entrato.emit()
func _on_visible_on_screen_notifier_3d_screen_exited() -> void:
uscito.emit()