diff options
author | Fredia Huya-Kouadio <fhuya@meta.com> | 2023-08-17 11:49:20 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-17 11:49:20 -0700 |
commit | 1f04b16320add64cea98e33fe541b426ff321713 (patch) | |
tree | 741a6563c1795437c0ad5b80c6121b5476861361 /plugins/hello_gdextension/README.md | |
parent | e61f1555b696b62152787d0fee14435325aee62b (diff) | |
parent | 37e27e3db22c0b33d098a0ac1fb2dfe8861be0fb (diff) | |
download | godot-android-samples-1f04b16320add64cea98e33fe541b426ff321713.tar.gz godot-android-samples-1f04b16320add64cea98e33fe541b426ff321713.tar.bz2 godot-android-samples-1f04b16320add64cea98e33fe541b426ff321713.zip |
Merge pull request #2 from m4gr3d/add_gdextension_plugin_sample
Add an Android GDExtension plugin sample
Diffstat (limited to 'plugins/hello_gdextension/README.md')
-rw-r--r-- | plugins/hello_gdextension/README.md | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/plugins/hello_gdextension/README.md b/plugins/hello_gdextension/README.md new file mode 100644 index 0000000..c7bd3aa --- /dev/null +++ b/plugins/hello_gdextension/README.md @@ -0,0 +1,61 @@ +## Hello GDExtension plugin + +Showcase how to build a Godot Android GDExtension plugin + +### Setup + +Clone the project using `git`: + +``` +git clone https://github.com/m4gr3d/Godot-Android-Samples.git +``` + +The sample has a dependency on the `godot-cpp` library, which is included as a Git submodule. +After cloning the sample, you'll need to execute the following commands to set up the submodule: + +``` +cd Godot-Android-Samples +git submodule update --init +``` + +### Building the C++ bindings + +To generate and compile the C++ bindings, use the following commands: + +``` +cd Godot-Android-Samples/plugins/hello_gdextension/godot-cpp +scons platform=android -j4 target=template_debug +scons platform=android -j4 target=template_release +``` + +When it's completed, you should have static libraries stored in +`plugins/hello_gdextension/godot-cpp/bin/` that will be used for +compilation by the plugin. + +### Building the Hello GDExtension plugin + +Use the following commands to build the plugin: + +``` +cd Godot-Android-Samples +./gradlew :plugins:hello_gdextension:assemble +``` + +The generated artifact can be found under [`demo/addons`](demo/addons). + +### Usage + +Open the [`demo`](demo) project in the Godot Editor + +**Note:** + +It's recommended to generate a version of the gdextension binary for the platform you're running +the Godot Editor onto. To do so: + +``` +cd Godot-Android-Samples/plugins/hello_gdextension +scons -j4 +``` + +Update [`src/main/assets/addons/hello_gdextension_plugin/hello_gdextension.gdextension`](src/main/assets/addons/hello_gdextension_plugin/hello_gdextension.gdextension) +with the path to the generated binary. |