NeoAxisEngine icon indicating copy to clipboard operation
NeoAxisEngine copied to clipboard

nuget support?

Open rds1983 opened this issue 5 years ago • 3 comments

Hello, Are there plans to publish this wholesome engine at nuget.org?

rds1983 avatar Oct 17 '20 04:10 rds1983

How to do it in the best way? The engine can't work without additional content, it is not just a code library.

betauser6 avatar Jan 25 '24 11:01 betauser6

store the content as resources?

rds1983 avatar Jan 25 '24 12:01 rds1983

How to do it in the best way? The engine can't work without additional content, it is not just a code library.

Generally, people using a .NET and C# based game engine are expecting that, the game engine editor and code editing are seperable. The game engine is responsible to game scene content, assests, etc., and user's custom game logic should be packed into an independent assembly which is complied from any IDE that support .NET. You Nuget package should consist of APIs exposed by the game engine. Your IDE plugin or extension should enable the IDE to work with the engine editor (for example, when a file in IDE is changed). This is a common practice, you can see it's done by Unity, Stride, etc.

martinrhan avatar Jan 26 '24 22:01 martinrhan