Niklas Eicker

Results 115 comments of Niklas Eicker

It seems like this is currently needed due to https://github.com/bevyengine/bevy/blob/main/Cargo.toml#L83 I was not able to get my project to work with `[email protected]`

I do understand correctly, that if I start using this template it's not possible to just change the license? In that case we would be forcing MIT/Apache on the user's...

> > I am a bit confused about the system label and system set merge. > > The idea is there are systems and there are groups of systems. I...

What you describe should be doable by using `init_collection` on `App` for the collection that you want to access directly. This will however give you no guarantees about when the...

In case you want to go with the `init_collection` solution: You should be able to also track the collection you initialized, by adding it to the loading state as well...

It sounds very reasonable to wait for dependencies to load. I shortly looked into this and it seems I do not have access to the dependencies where I would need...

In my opinion the priority is pretty high. There is just little I can do in the plugin itself, since Bevy does not expose the dependencies. Without bevyengine/bevy#5297 I can...

I definitely want to support tweening and any help would be appreciated. Maybe we can avoid duplicated methods and do something similar to entity commands? I am thinking of user...

Yes, stop and other controls are planned on single instance handles (#53 ). If you have time for it, feel free to implement any of the controls.

I went ahead and implemented the discussed changes. I couldn't find a fork with commits from you, so I hope we didn't duplicate any work now.