Any way to "extend" the engine in C#?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Lajbert

Hello,

I am migrating my game engine/framework I wrote on top of MonoGame to Godot, but i’d like to keep my keep my classes reusable, for example I create a SmartCamera class that contains all the functionalities I need my game (following player, smoothing movements, effects, etc) but I would not like to copy and paste all this generic game code from one game to another. Is there any way to “extend” the engine with these classes, e.g.: to create a “SmartCamera” or “AnimationStateMachine” Node that I can just reuse in all my games (maybe even from the Editor when selecting a Node), without having to copy paste a lot of code from one project to another? I am aware that it’s possible to write C++ extensions, but I’d rather stick to C# as I am more experienced with it.

Thanks!

Hey,

what about just putting this into a Class Library and adding that as dependency?

juppi | 2023-01-17 10:32

I’ll look into it, thanks!

Lajbert | 2023-01-18 12:30

:bust_in_silhouette: Reply From: spaceyjase

Yes, you create a custom plugin:

Looks exactly what I need, thank you!

Lajbert | 2023-01-18 12:31