Shadowblitz16
Shadowblitz16
> I want to make sure I understand correctly the feature you want: Based on what you've said, "Allow us to synchronize layers and frames when selecting and moving elements...
> Every `ArchetypeQuery` has a property `Entities`. This property is an enumerator. It can be used to iterate all entities matching the query. > > foreach (var entity in query.Entities)...
> .net maui? It doesn't work with Linux. Also that's a gui library not necessarily just a window Library I am looking for something like glfw but pure csharp
It would just be nice to have application icons for the apps.
> File icons on Linux depend on your system's icon theme and the file browser, so not much I can do there. For desktop shortcuts you can set any icon,...
I need a more high level method. ```cs void IImage.Blit(IImage target, PixelRect targetRect, PixelRect sourceRect); ``` A method to do rotations and origins would be nice too. ```cs void IImage.Blit(IImage...
Ideally systems would loop over components.. ```cs public partial static class A { [TinySystem][All] private static void MoveEntities(ref Position pos, ref Velocity vel) { pos.Ref.X *= vel.Ref.X; pos.Ref.Y *= vel.Ref.Y;...
> yes, call "Show" instead of "ShowDialog", if I remember. There are demos showing non-blocking windows. ok thankyou
> yes, call "Show" instead of "ShowDialog", if I remember. There are demos showing non-blocking windows. wait is there a way to toggle them?
> What do you mean toggle? There's ShowDialog, Show and Activate methods, so you can choose what window is active. I mean toggle show if it's closed and close if...