Flecs.NET icon indicating copy to clipboard operation
Flecs.NET copied to clipboard

A C# wrapper for flecs

Results 18 Flecs.NET issues
Sort by recently updated
recently updated
newest added

When [pluggable storages](https://github.com/SanderMertens/flecs/issues/680) are added to flecs, pinned C# arrays should be used as storage for managed types. **Performance** - Special unboxing code is required per every iteration in the...

Hello, I noticed you have static libraries for mac/linux/windows, can you also include for ios and android targets please?

help wanted

In the current API, strings that need to be passed over to the native side are always allocated on the heap with ``Marshal.StringToHGlobalAnsi`` using the ``NativeString`` helper struct. Example: ```cs...

help wanted
good first issue

It would be useful in reflection scenarios to allow the user to lookup component ids and execute ECS operations using ``System.Type``. This functionality is required for automatic member registration/serialization/deserialization support....

Hello. I have not delved deep into the source code for this project, however, I noticed what appears to be a regression in the 4.0.0 release. Prior to 4.0.0, reference...

In .NET 9, exceptions thrown inside systems cause the app to terminate with no stack trace. Exceptions can also no longer be caught with a debugger. This can be fixed...

Add multi-threaded versions of ``.Each``/``.Iter``/``.Run``. ```cs query.EachJob(static (Iter it, int i, ref Position p, ref Velocity v) => { p.X += v.X; p.Y += v.Y; }); query.IterJob(static (Iter it, Span...