Fabio

Results 18 comments of Fabio

> I have the same exact issue. > A brand new RPi4, with Bruster (no additional software) > > The whole screen flickers, not only shows the white line on...

> I can rotate the screen from the /boot/config.txt file by adding the line display_rotate. > ex: > rotate 90 degrees: > display_rotate = 1 > rotate 180 degrees: >...

@ffbosh well, your answer is better than a no answer. Thank you for the suggestion. set the h_sync_polarity to 1 is the only thing that makes the screen stable, but...

> I have added the `.with(kinematic(), ())` component and this fixes the behavior with the collision body being hijacked and managed by physxs instead of our dynamic updates. Unfortunately it...

Yep, that will rebuild the whole project, leading to those unknowns where someone says "It doesn't work" and the other reply "try `ambient build --clean-build`" and it will magically work...

If you are already checking the file modifications, then for adding removing or renaming files, possibly we need to check whether the directory changed as well, not only the files....

> ```rust > let last_modified_time = get_files_in_path(&package_path) > .filter(|p| !p.starts_with(&build_path) && !p.starts_with(&package_individual_build_path)) > .filter_map(|f| f.metadata().ok()?.modified().ok()) > .map(chrono::DateTime::::from) > .chain(dependency_max_last_build_times.into_iter()) > .max(); > > let last_modified_before_build = last_build_time > .zip(last_modified_time) >...

> I can add `created`, but would you like to give it a shot first? Of course