Simon Schmid
Simon Schmid
From Google Translate: > Hello sir, I found during testing that this statement has GC. Is there any way to solve it? @32haojiufangjia yes, please try ```csharp _group.AsEnumerable().AsParallel().ForAll(Execute); ```
Fyi, when doing things in parallel, please avoid using generated methods like entity.AddXyz(), entity.ReplaceXyz(), entity.RemoveXyz(), etc, since they result in modifying non-concurrent collections like HashSets, etc. When doing things in...
@gkiernozek Happy to hear you have fun trying Entitas 2.0 already! All good, thanks for asking. I kinda feel bad not working on Entitas right now and I miss working...
Hi! Can you pls post you component? I assume it doesn't have a non trivial type. Entitas entity drawer in Visual Debugging tries to draw any kind of type, in...
Yes, see comment above: https://github.com/sschmid/Entitas/issues/1064#issuecomment-1597445012 Add `[DontDrawComponent]` or implement a custom drawer for the component, like https://github.com/sschmid/Entitas/blob/b74c4c3137dc00d7d17c170afad4b1c92de1b92d/src/Entitas.VisualDebugging.Unity.Editor/Vector3TypeDrawer.cs#L7
Do you mean in AbstractEntityIndex? https://github.com/sschmid/Entitas/blob/develop/src/Entitas/EntityIndex/AbstractEntityIndex.cs#L23 We could change getKeys to IEnumerable
Sorry for the confusion! The setup with Entitas 1.14 changed a little but because I migrated to dotnet 6.0 (instead of mono). As always, if you have any issues or...
@thenitro sorry for the inconvenience. The initial setup caused trouble for many, but is essentially the same as previously, only using dotnet 6. I'm to blame for the lack of...
@synthetic-w the exception can happen when the Jenny.properties file is invalid due to wrong syntax. If you can post it we see where the problem is
I removed the auto-generated doxygen docs (Entitas API reference) in 1.14.0. Tag 1.13.0 contains it https://github.com/sschmid/Entitas/tree/1.13.0/docs Shall I bring it back? Is this useful to you?