summaryrefslogtreecommitdiff
path: root/hello_world/demo/Main.gd
diff options
context:
space:
mode:
authorfhuya <fhuya@google.com>2020-02-23 13:43:08 -0500
committerfhuya <fhuya@google.com>2020-02-23 13:43:08 -0500
commit84aa6bbbe4f13072181c0437103d2430f8ea6551 (patch)
treebe18caa4ff1c51d1aee35c04ab4c4a1193af48b7 /hello_world/demo/Main.gd
parent259ae7a9fdcfad643412eedec84e0be883debec0 (diff)
downloadgodot-android-samples-84aa6bbbe4f13072181c0437103d2430f8ea6551.tar.gz
godot-android-samples-84aa6bbbe4f13072181c0437103d2430f8ea6551.tar.bz2
godot-android-samples-84aa6bbbe4f13072181c0437103d2430f8ea6551.zip
Add sample hello world plugin and demo project.
Diffstat (limited to 'hello_world/demo/Main.gd')
-rw-r--r--hello_world/demo/Main.gd12
1 files changed, 12 insertions, 0 deletions
diff --git a/hello_world/demo/Main.gd b/hello_world/demo/Main.gd
new file mode 100644
index 0000000..11b332b
--- /dev/null
+++ b/hello_world/demo/Main.gd
@@ -0,0 +1,12 @@
+extends Node2D
+
+var hello_world
+
+func _ready():
+ if Engine.has_singleton("HelloWorld"):
+ hello_world = Engine.get_singleton("HelloWorld")
+
+
+func _on_Button_pressed():
+ if hello_world:
+ hello_world.helloWorld()