diff options
Diffstat (limited to 'hello_signals/demo')
12 files changed, 42 insertions, 16 deletions
diff --git a/hello_signals/demo/Main.gd b/hello_signals/demo/Main.gd index 1b3e972..2dca0db 100644 --- a/hello_signals/demo/Main.gd +++ b/hello_signals/demo/Main.gd @@ -2,16 +2,13 @@ extends Node2D var timerCount = 0 var timerRunning = false -var helloSignals +var helloSignalsPlugin : HelloSignalsPlugin func _ready(): - if Engine.has_singleton("HelloSignals"): - helloSignals = Engine.get_singleton("HelloSignals") - helloSignals.connect("TikTok", Callable(self, "_on_tiktok")) + helloSignalsPlugin = preload("res://addons/hello_signals_plugin/interface/hello_signals_plugin.gd").new() + helloSignalsPlugin.registerForTikTok(Callable(self, "_on_tiktok")) - $Button.connect("pressed", Callable(self, "_on_Button_pressed")) - else: - print("Couldn't find HelloSignals singleton") + $Button.connect("pressed", Callable(self, "_on_Button_pressed")) func _on_tiktok(): @@ -19,9 +16,10 @@ func _on_tiktok(): timerCount = timerCount + 1 $Label.text = str(timerCount) + func _on_Button_pressed(): print("on button pressed from GDScript") - helloSignals.onButtonPressed() + helloSignalsPlugin.toggleTikTok() timerRunning = !timerRunning if (timerRunning): $Button.text = "Stop Timer" diff --git a/hello_signals/demo/addons/hello_signals_plugin/HelloSignals.debug.aar b/hello_signals/demo/addons/hello_signals_plugin/HelloSignals.debug.aar Binary files differdeleted file mode 100644 index 3e445c6..0000000 --- a/hello_signals/demo/addons/hello_signals_plugin/HelloSignals.debug.aar +++ /dev/null diff --git a/hello_signals/demo/addons/hello_signals_plugin/HelloSignals.release.aar b/hello_signals/demo/addons/hello_signals_plugin/HelloSignals.release.aar Binary files differdeleted file mode 100644 index 6440048..0000000 --- a/hello_signals/demo/addons/hello_signals_plugin/HelloSignals.release.aar +++ /dev/null diff --git a/hello_signals/demo/addons/hello_signals_plugin/.gdignore b/hello_signals/demo/addons/hello_signals_plugin/export/.gdignore index 8b13789..8b13789 100644 --- a/hello_signals/demo/addons/hello_signals_plugin/.gdignore +++ b/hello_signals/demo/addons/hello_signals_plugin/export/.gdignore diff --git a/hello_signals/demo/addons/hello_signals_plugin/export/HelloSignals.debug.aar b/hello_signals/demo/addons/hello_signals_plugin/export/HelloSignals.debug.aar Binary files differnew file mode 100644 index 0000000..d241ab1 --- /dev/null +++ b/hello_signals/demo/addons/hello_signals_plugin/export/HelloSignals.debug.aar diff --git a/hello_signals/demo/addons/hello_signals_plugin/export/HelloSignals.release.aar b/hello_signals/demo/addons/hello_signals_plugin/export/HelloSignals.release.aar Binary files differnew file mode 100644 index 0000000..6dae345 --- /dev/null +++ b/hello_signals/demo/addons/hello_signals_plugin/export/HelloSignals.release.aar diff --git a/hello_signals/demo/addons/hello_signals_plugin/hello_signals_export_plugin.gd b/hello_signals/demo/addons/hello_signals_plugin/export/hello_signals_editor_export_plugin.gd index afc4162..f0f3288 100644 --- a/hello_signals/demo/addons/hello_signals_plugin/hello_signals_export_plugin.gd +++ b/hello_signals/demo/addons/hello_signals_plugin/export/hello_signals_editor_export_plugin.gd @@ -8,9 +8,9 @@ func _supports_platform(platform): func _get_android_libraries(platform, debug): if debug: - return PackedStringArray(["hello_signals_plugin/HelloSignals.debug.aar"]) + return PackedStringArray(["hello_signals_plugin/export/HelloSignals.debug.aar"]) else: - return PackedStringArray(["hello_signals_plugin/HelloSignals.release.aar"]) + return PackedStringArray(["hello_signals_plugin/export/HelloSignals.release.aar"]) func _get_name(): return "Hello Signals plugin" diff --git a/hello_signals/demo/addons/hello_signals_plugin/hello_signals_plugin.gd b/hello_signals/demo/addons/hello_signals_plugin/export/hello_signals_editor_plugin.gd index 65d8034..5c71083 100644 --- a/hello_signals/demo/addons/hello_signals_plugin/hello_signals_plugin.gd +++ b/hello_signals/demo/addons/hello_signals_plugin/export/hello_signals_editor_plugin.gd @@ -6,7 +6,7 @@ var export_plugin : EditorExportPlugin func _enter_tree(): # Initialization of the plugin goes here. - export_plugin = preload("hello_signals_export_plugin.gd").new() + export_plugin = preload("hello_signals_editor_export_plugin.gd").new() add_export_plugin(export_plugin) pass diff --git a/hello_signals/demo/addons/hello_signals_plugin/interface/hello_signals_plugin.gd b/hello_signals/demo/addons/hello_signals_plugin/interface/hello_signals_plugin.gd new file mode 100644 index 0000000..0cc9c1d --- /dev/null +++ b/hello_signals/demo/addons/hello_signals_plugin/interface/hello_signals_plugin.gd @@ -0,0 +1,27 @@ +class_name HelloSignalsPlugin extends Object + +## Interface used to access the functionality provided by the HelloSignals plugin + +var _hello_signals_singleton + +func _init(): + if Engine.has_singleton("HelloSignals"): + _hello_signals_singleton = Engine.get_singleton("HelloSignals") + else: + printerr("Couldn't find HelloSignals singleton") + + +## Register for the tiktok signals emitted +func registerForTikTok(callback: Callable) -> void: + if _hello_signals_singleton: + _hello_signals_singleton.connect("TikTok", callback) + else: + printerr("Unable to register for tiktok") + + +## Start tiktok if not started, otherwise stop it +func toggleTikTok(): + if _hello_signals_singleton: + _hello_signals_singleton.onButtonPressed() + else: + printerr("Unable to toggle tiktok") diff --git a/hello_signals/demo/addons/hello_signals_plugin/plugin.cfg b/hello_signals/demo/addons/hello_signals_plugin/plugin.cfg index 8fb2c37..b32555f 100644 --- a/hello_signals/demo/addons/hello_signals_plugin/plugin.cfg +++ b/hello_signals/demo/addons/hello_signals_plugin/plugin.cfg @@ -4,4 +4,4 @@ name="Hello Signals plugin" description="Showcases how to package a sample Android plugin" author="Fredia Huya-Kouadio" version="" -script="hello_signals_plugin.gd" +script="export/hello_signals_editor_plugin.gd" diff --git a/hello_signals/demo/export_presets.cfg b/hello_signals/demo/export_presets.cfg index fda6651..1d4cb1f 100644 --- a/hello_signals/demo/export_presets.cfg +++ b/hello_signals/demo/export_presets.cfg @@ -8,7 +8,7 @@ custom_features="" export_filter="all_resources" include_filter="" exclude_filter="" -export_path="" +export_path="android/Hello Signals Plugin Demo.apk" encryption_include_filters="" encryption_exclude_filters="" encrypt_pck=false @@ -39,9 +39,6 @@ launcher_icons/adaptive_foreground_432x432="" launcher_icons/adaptive_background_432x432="" graphics/opengl_debug=false xr_features/xr_mode=0 -xr_features/hand_tracking=0 -xr_features/hand_tracking_frequency=0 -xr_features/passthrough=0 screen/immersive_mode=true screen/support_small=true screen/support_normal=true @@ -199,3 +196,6 @@ permissions/write_sms=false permissions/write_social_stream=false permissions/write_sync_settings=false permissions/write_user_dictionary=false +xr_features/hand_tracking=0 +xr_features/hand_tracking_frequency=0 +xr_features/passthrough=0 diff --git a/hello_signals/demo/project.godot b/hello_signals/demo/project.godot index d71c32c..655eefc 100644 --- a/hello_signals/demo/project.godot +++ b/hello_signals/demo/project.godot @@ -26,6 +26,7 @@ enabled=PackedStringArray("res://addons/hello_signals_plugin/plugin.cfg") [rendering] renderer/rendering_method="gl_compatibility" +renderer/rendering_method.mobile="gl_compatibility" textures/vram_compression/import_etc2_astc=true environment/defaults/default_environment="res://default_env.tres" quality/driver/driver_name="GLES2" |