hello!! i was wondering if it would be possible to export for the web if i were to use C++ via GDExtension for a project. i understand that exporting C# to the web is currently not possible in godot 4, but does the same hold true for C++?
using GDExtension (C++) and exporting for the web
- Best Answerset by RoosterWithHands
You definitely can use GDExtensions for the Web. You'll need to carefully follow these instructions:
https://docs.godotengine.org/en/stable/contributing/development/compiling/compiling_for_web.html
Essentially you will need to compile your own export templates with your GDExtension included.
excellent, thank you so much!!