mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2026-01-06 14:10:55 +03:00
7 lines
94 B
GDScript
7 lines
94 B
GDScript
extends Node
|
|
|
|
|
|
func _on_body_entered(body):
|
|
if body.name == "Player":
|
|
$"../WinText".show()
|