mirror of
https://github.com/Relintai/pandemonium_demo_projects.git
synced 2025-01-04 14:49:41 +01:00
6 lines
93 B
GDScript3
6 lines
93 B
GDScript3
|
extends Node
|
||
|
|
||
|
func _on_body_entered(body):
|
||
|
if body.name == "Player":
|
||
|
$"../WinText".show()
|