virtualx-engine/modules/mono/editor
Ignacio Roldán Etcheverry 4d710bf659 C#: Add initial implementation of source generator for script members
This replaces the way we invoke methods and set/get properties.
This first iteration rids us of runtime type checking in those
cases, as it's now done at compile time.
Later it will also stop needing the use of reflection. After that,
we will only depend on reflection for generic Godot Array and
Dictionary. We're stuck with reflection in generic collections
for now as C# doesn't support generic/template specialization.

This is only the initial implementation. Further iterations are
coming, specially once we switch to the native extension system
which completely changes the way members are accessed/invoked.
For example, with the native extension system we will likely need
to create `UnmanagedCallersOnly` invoke wrapper methods and return
function pointers to the engine.

Other kind of members, like event signals will be receiving the
same treatment in the future.
2022-08-22 03:36:51 +02:00
..
Godot.NET.Sdk C#: Add initial implementation of source generator for script members 2022-08-22 03:36:51 +02:00
GodotTools C#: Code cleanup and greatly reduce use of C# pointers 2022-08-22 03:36:51 +02:00
script_templates Fix EditorScenePostImport templates for C# 2022-06-16 19:29:59 +02:00
bindings_generator.cpp C#: Add initial implementation of source generator for script members 2022-08-22 03:36:51 +02:00
bindings_generator.h C#: Code cleanup and greatly reduce use of C# pointers 2022-08-22 03:36:51 +02:00
code_completion.cpp Rename shader parameter uniform setter/getter methods for consistency 2022-08-04 23:17:06 +02:00
code_completion.h Update copyright statements to 2022 2022-01-03 21:27:34 +01:00
editor_internal_calls.cpp C#: Begin move to .NET Core 2022-08-22 03:35:59 +02:00
editor_internal_calls.h Code quality: Fix header guards consistency 2022-07-25 11:17:40 +02:00