diff options
author | Fredia Huya-Kouadio <fhuya@meta.com> | 2024-09-26 11:05:07 -0700 |
---|---|---|
committer | Fredia Huya-Kouadio <fhuya@meta.com> | 2024-09-26 12:10:14 -0700 |
commit | cc561b57ceaf53aea3ba037589457d25bc1c988a (patch) | |
tree | e1e93f6b75926185c12bc3a07407bc48d6069d46 /plugins/hello_signals | |
parent | 26a843bdec32fbab46d25828e53eff74d70f1c26 (diff) | |
download | godot-android-samples-master.tar.gz godot-android-samples-master.tar.bz2 godot-android-samples-master.zip |
Bump the Godot Android library dependency to 4.3
Bump godot-cpp to version godot-4.3-stable
Diffstat (limited to 'plugins/hello_signals')
-rw-r--r-- | plugins/hello_signals/src/main/java/fhuyakou/godot/plugin/android/hellosignals/HelloSignalsPlugin.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/hello_signals/src/main/java/fhuyakou/godot/plugin/android/hellosignals/HelloSignalsPlugin.kt b/plugins/hello_signals/src/main/java/fhuyakou/godot/plugin/android/hellosignals/HelloSignalsPlugin.kt index d6df7ef..1e7e346 100644 --- a/plugins/hello_signals/src/main/java/fhuyakou/godot/plugin/android/hellosignals/HelloSignalsPlugin.kt +++ b/plugins/hello_signals/src/main/java/fhuyakou/godot/plugin/android/hellosignals/HelloSignalsPlugin.kt @@ -50,7 +50,7 @@ class HelloSignalsPlugin(godot: Godot) : GodotPlugin(godot) { } @UsedByGodot - private fun onButtonPressed() { + fun onButtonPressed() { Log.i(TAG, "OnButtonPressed from Kotlin") if (!startTikTok()) { stopTikTok() |