Philipp Kaiser

Results 14 comments of Philipp Kaiser

> If you want to avoid per-tick iteration, I'd recommend something like an event system that sits outside the ECS (or in an ECS resource) that uses a [binary heap](https://doc.rust-lang.org/std/collections/struct.BinaryHeap.html)....

We are talking about different things. I do not want to remove an entity with a lifetime component. It's absolutely clear to me how to do that. I want to...

Now you got me right :) Yes, I already thought about this. Although this would duplicate all components (which have a lifetime). I'm currently doing my animations this way: ```...

That's exactly the question. Should one add this per component as a field, or is there a generic solution to this "lifetime for components" problem. (Of course it's always better...

When using [poetry](https://python-poetry.org/) (automatically creating virtual-env and only install what is needed) as dependency management tool for installing and building, you can easily use what you expected: Our CI runs:...

I opened a ticket, but then found this here (exactly my problem) (#305) I'm fine with the current behaviour, except there is a missing link for multi project documentations. I...

Thanks for your reply, I tried your 3.0.8 SNAPSHOT, but still getting > Caused by: org.raml.ramltopojo.GenerationException: can't fetch type named nil | boolean

Thanks for your interest. There is no need for a larger example: I created a minimal example of the problem: https://github.com/Kaiser1989/simpleRamlTest I also found the evil guy, making it fail:...

I finally found a workaround for this: I don't use nil values anymore. I added a custom Plugin to provide java.util.Optional support: With my OptionalPlugin: ``` java ... @Override public...

Thanks for your feedback. I like your project and will help whenever I can. Of course it would be nice, if the "nil" stuff would work together with jackson. The...