summaryrefslogtreecommitdiffstats
path: root/test/project/example.gd
diff options
context:
space:
mode:
authorDavid Snopek <dsnopek@gmail.com>2024-01-30 11:25:25 -0600
committerDavid Snopek <dsnopek@gmail.com>2024-02-12 13:30:07 -0600
commit8fbb7cf79535a2b382d57ce2a094d4cbee316fd1 (patch)
tree3b3ea3c4c80911752073ba50920600a348ab81de /test/project/example.gd
parent36847f6af0be548bae96429fa84d59f407b51582 (diff)
downloadredot-cpp-8fbb7cf79535a2b382d57ce2a094d4cbee316fd1.tar.gz
Allow GDExtensions to register virtual methods and call them on scripts
Diffstat (limited to 'test/project/example.gd')
-rw-r--r--test/project/example.gd5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/project/example.gd b/test/project/example.gd
new file mode 100644
index 0000000..b20280a
--- /dev/null
+++ b/test/project/example.gd
@@ -0,0 +1,5 @@
+extends Example
+
+func _do_something_virtual(p_name, p_value):
+ custom_signal.emit(p_name, p_value)
+ return "Implemented"