From cc561b57ceaf53aea3ba037589457d25bc1c988a Mon Sep 17 00:00:00 2001 From: Fredia Huya-Kouadio Date: Thu, 26 Sep 2024 11:05:07 -0700 Subject: Update visibility of the plugin methods exposed to gdscript Bump the Godot Android library dependency to 4.3 Bump godot-cpp to version godot-4.3-stable --- .../godot/plugin/android/hellogdextension/HelloGDExtensionPlugin.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/hello_gdextension/src') 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) } -- cgit v1.2.3