diff options
author | Fredia Huya-Kouadio <fhuya@meta.com> | 2023-10-08 14:34:02 -0700 |
---|---|---|
committer | Fredia Huya-Kouadio <fhuya@meta.com> | 2023-10-08 14:34:02 -0700 |
commit | d9fff97ae273807c8eab768847753f17b9ecda46 (patch) | |
tree | 03e6369f10286d0e5142c687913cf6bffa3ca582 /plugins/hello_signals/demo | |
parent | 8bd8bca5986794ce1d8edbd6bbd170ad86881659 (diff) | |
download | godot-android-samples-d9fff97ae273807c8eab768847753f17b9ecda46.tar.gz godot-android-samples-d9fff97ae273807c8eab768847753f17b9ecda46.tar.bz2 godot-android-samples-d9fff97ae273807c8eab768847753f17b9ecda46.zip |
Update the 'HelloSignals' plugin sample's directory structure
Diffstat (limited to 'plugins/hello_signals/demo')
-rw-r--r-- | plugins/hello_signals/demo/Main.gd | 2 | ||||
-rw-r--r-- | plugins/hello_signals/demo/export_presets.cfg | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/plugins/hello_signals/demo/Main.gd b/plugins/hello_signals/demo/Main.gd index 2dca0db..db9499b 100644 --- a/plugins/hello_signals/demo/Main.gd +++ b/plugins/hello_signals/demo/Main.gd @@ -5,7 +5,7 @@ var timerRunning = false var helloSignalsPlugin : HelloSignalsPlugin func _ready(): - helloSignalsPlugin = preload("res://addons/hello_signals_plugin/interface/hello_signals_plugin.gd").new() + helloSignalsPlugin = preload("res://addons/hello_signals_plugin/hello_signals_plugin_interface.gd").new() helloSignalsPlugin.registerForTikTok(Callable(self, "_on_tiktok")) $Button.connect("pressed", Callable(self, "_on_Button_pressed")) diff --git a/plugins/hello_signals/demo/export_presets.cfg b/plugins/hello_signals/demo/export_presets.cfg index 44a32e5..33e36e8 100644 --- a/plugins/hello_signals/demo/export_presets.cfg +++ b/plugins/hello_signals/demo/export_presets.cfg @@ -35,6 +35,7 @@ package/app_category=2 package/retain_data_on_uninstall=false package/exclude_from_recents=false package/show_in_android_tv=false +package/show_in_app_library=true package/show_as_launcher_app=false launcher_icons/main_192x192="" launcher_icons/adaptive_foreground_432x432="" |