De-duplicated info about pros/cons of GDExtension vs Module

Co-authored-by: Serhii Snitsaruk <limbonaut@pm.me>
This commit is contained in:
Simon Kerler 2024-12-17 19:47:45 +01:00 committed by GitHub
parent 955da07652
commit 0e0a4685f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 4 deletions

View File

@ -3,13 +3,12 @@ Getting LimboAI
LimboAI can be used as either a C++ module or as a GDExtension shared library. LimboAI can be used as either a C++ module or as a GDExtension shared library.
There are some differences between the two. In short, GDExtension version is more There are some differences between the two. In short, GDExtension version is more
convenient to use but somewhat limited in features. The module version is the most feature-full and slightly more performant, but it requires using custom engine builds including the export templates. convenient to use but somewhat limited in features. The module version provides better editor
experience and is slightly more performant, but it requires using custom engine builds including the export templates.
Whichever you choose to use, your project will stay compatible with both and you can switch from one to Whichever you choose to use, your project will stay compatible with both and you can switch from one to
the other any time. the other any time.
Choose the version you'd like to use. The module version provides better editor Choose the version you'd like to use. If you're unsure, start with the GDExtension version.
experience and performance, while the GDExtension version is more convenient to use.
If you're unsure, start with the GDExtension version.
You can change your decision at any time - both versions are fully compatible. You can change your decision at any time - both versions are fully compatible.
Get GDExtension version Get GDExtension version