now 'all' the file are in order
This commit is contained in:
parent
cdfe1089af
commit
5e392d259e
23 changed files with 23 additions and 23 deletions
20
Script/ball.gd
Normal file
20
Script/ball.gd
Normal 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()
|
||||
1
Script/ball.gd.uid
Normal file
1
Script/ball.gd.uid
Normal file
|
|
@ -0,0 +1 @@
|
|||
uid://br3i356g3fo3f
|
||||
Loading…
Add table
Add a link
Reference in a new issue