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