summaryrefslogtreecommitdiff
path: root/plugins/hello_gdextension
diff options
context:
space:
mode:
authorFredia Huya-Kouadio <fhuya@meta.com>2024-09-26 11:05:07 -0700
committerFredia Huya-Kouadio <fhuya@meta.com>2024-09-26 12:10:14 -0700
commitcc561b57ceaf53aea3ba037589457d25bc1c988a (patch)
treee1e93f6b75926185c12bc3a07407bc48d6069d46 /plugins/hello_gdextension
parent26a843bdec32fbab46d25828e53eff74d70f1c26 (diff)
downloadgodot-android-samples-master.tar.gz
godot-android-samples-master.tar.bz2
godot-android-samples-master.zip
Update visibility of the plugin methods exposed to gdscriptHEADmaster
Bump the Godot Android library dependency to 4.3 Bump godot-cpp to version godot-4.3-stable
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)
}