diff options
author | Fredia Huya-Kouadio <fhuya@meta.com> | 2023-09-05 23:46:18 -0700 |
---|---|---|
committer | Fredia Huya-Kouadio <fhuya@meta.com> | 2023-09-05 23:46:18 -0700 |
commit | 7ea3c406a6ea5d08fa69b71ba7b4a357c9211366 (patch) | |
tree | fcf50811a2cfcc933bfe5f7efcac38d090105f2f /plugins/hello_gdextension/src | |
parent | d2ab505421d02d862a7c370290a2e8cac7cd451a (diff) | |
download | godot-android-samples-7ea3c406a6ea5d08fa69b71ba7b4a357c9211366.tar.gz godot-android-samples-7ea3c406a6ea5d08fa69b71ba7b4a357c9211366.tar.bz2 godot-android-samples-7ea3c406a6ea5d08fa69b71ba7b4a357c9211366.zip |
Update the godot android library dependency now that PR refactoring the plugin logic is merged in `main`
Diffstat (limited to 'plugins/hello_gdextension/src')
-rw-r--r-- | plugins/hello_gdextension/src/main/java/fhuyakou/godot/plugin/android/hellogdextension/HelloGDExtensionPlugin.kt | 2 |
1 files changed, 1 insertions, 1 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 85a28ab..ed220ca 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 @@ -40,7 +40,7 @@ class HelloGDExtensionPlugin(godot: Godot) : GodotPlugin(godot) { override fun getPluginName() = "HelloGDExtension" - override fun getPluginGDExtensionModulesPaths() = setOf("res://addons/hello_gdextension_plugin/hello_gdextension.gdextension") + override fun getPluginGDExtensionLibrariesPaths() = setOf("res://addons/hello_gdextension_plugin/hello_gdextension.gdextension") private external fun nativeAddGDExampleNode(parentNodePath: String) |