This commit is contained in:
2026-09-10 10:59:37 +03:00
commit 4fc9b337c2
16 changed files with 199 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
extends RefCounted
func get_name():
return "gds.greet"
func run(ctx):
var name = ctx.GetParam("name")
if name == "":
name = "Stranger"
ctx.Log("EVENT", "GDScript greet action: Hello, " + name + "!")