This is amazing! Do you plan on releasing a fully GDScript version? This is the best open source approach I have seen for tank physics and would love to expand upon it, problem is I use a custom version of Godot without support for C#. No problem if you dont want to.
Viewing post in Vehicle Modeling Toolkit | Godot 4 Demo (C#/.NET) comments
To run this toolkit in Godot versions without C# support, it would need to be ported to GDExtension (C++)
Since this toolkit is built from scratch and took a lot of debugging to fit with Godot, I chose C# for the prototype. Interpreted languages like GDScript will struggle with frame rates during heavy physics calculations, but writing in raw C++ would have made debugging and prototyping much slower. C# gave me a great balance between development speed and performance.
While porting to GDExtension is the more ideal long-term direction, I plan to focus on finalizing and stabilizing the current C# framework before attempting that migration.