summaryrefslogtreecommitdiff
path: root/plugins/hello_gdextension
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/hello_gdextension')
m---------plugins/hello_gdextension/godot-cpp0
-rw-r--r--plugins/hello_gdextension/src/main/java/fhuyakou/godot/plugin/android/hellogdextension/HelloGDExtensionPlugin.kt4
2 files changed, 2 insertions, 2 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)
}