Jakub Okoński

Results 51 issues of Jakub Okoński

Hi, How about subscene.org? There are many subs for tv shows there, so it would be a great source.

FEATURE

Hi, I ran a quick benchmark (hopefully valid) after I noticed my app spending a lot of time in `hasSame`. If I understand it correctly, the only difference between `ts_a[unit]...

issue: performance

Could we make the grouping operations generic so they're able to produce collections other than `std::collections::HashMap`? I'm proposing turning ```rs fn into_group_map(self) -> HashMap ``` into ```rs fn into_group_map(self) ->...

generic-container

@MaikKlein @Ralith First of all thanks for your work on builders, they make it so much easier to define only what is required. Since the Builder objects are transparent, I...

enhancement

## What problem does this solve or what need does it fill? More optimizations could be done in systems that could iterate over queries in a batched, packed way rather...

C-Enhancement
A-ECS
C-Performance
D-Complex

Currently, query execution functions require either a const borrow of a connection pool, or a mutable borrow of a Transaction. This makes it impossible to prepare multiple queries and execute...

enhancement
low priority

## Bevy version 0.6.0 ## Operating system & version Windows 11 ## What you did ```rs let mut app = App::new(); app.insert_resource(bevy_tasks::ComputeTaskPool( bevy_tasks::TaskPoolBuilder::new().num_threads(1).build(), )); let a = Arc::new(FairMutex::new(0usize)); let b...

C-Bug
A-Tasks

## What problem does this solve or what need does it fill? During the implementation of #7267 & #6587 (stageless ECS schedules), the old `0.9` API of `pub fn set_executor(&mut...

A-ECS
C-Usability
D-Complex

I have systems that are part of small sets I'd like to ignore for the purposes of visualization. They're currently shown as independent systems with links to multiple sets, but...

Explains the uniform pointer being used for these two operations and how elements are offset from it.

S-waiting-on-author
T-libs