summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
m---------plugins/hello_gdextension/godot-cpp0
-rw-r--r--plugins/hello_gdextension/src/main/java/fhuyakou/godot/plugin/android/hellogdextension/HelloGDExtensionPlugin.kt4
-rw-r--r--plugins/hello_signals/src/main/java/fhuyakou/godot/plugin/android/hellosignals/HelloSignalsPlugin.kt2
3 files changed, 3 insertions, 3 deletions
diff --git a/plugins/hello_gdextension/godot-cpp b/plugins/hello_gdextension/godot-cpp
-Subproject 588d869a3ba91ecef8b42303e27066006f5f7d0
+Subproject fbbf9ec4efd8f1055d00edb8d926eef8ba4c2cc
diff --git a/plugins/hello_gdextension/src/main/java/fhuyakou/godot/plugin/android/hellogdextension/HelloGDExtensionPlugin.kt b/plugins/hello_gdextension/src/main/java/fhuyakou/godot/plugin/android/hellogdextension/HelloGDExtensionPlugin.kt
index ed220ca..cb39ae4 100644
--- a/plugins/hello_gdextension/src/main/java/fhuyakou/godot/plugin/android/hellogdextension/HelloGDExtensionPlugin.kt
+++ b/plugins/hello_gdextension/src/main/java/fhuyakou/godot/plugin/android/hellogdextension/HelloGDExtensionPlugin.kt
@@ -27,13 +27,13 @@ class HelloGDExtensionPlugin(godot: Godot) : GodotPlugin(godot) {
}
@UsedByGodot
- private fun addGDExampleNode(parentNodePath: String) {
+ fun addGDExampleNode(parentNodePath: String) {
Log.i(TAG, "Adding GDExample node to $parentNodePath")
nativeAddGDExampleNode(parentNodePath)
}
@UsedByGodot
- private fun setGDExampleVisible(visible: Boolean) {
+ fun setGDExampleVisible(visible: Boolean) {
Log.i(TAG, "Updating GDExample node visibility to $visible")
nativeToggleVisibility(visible)
}
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()