mastodon.gamedev.place is one of the many independent Mastodon servers you can use to participate in the fediverse.
Mastodon server focused on game development and related topics.

Server stats:

5.4K
active users

Alice I. Cecile

It's Monday, and that means another :D We've got 17 community-approved PRs in the backlog: github.com/bevyengine/bevy/pul+

As the release candidate rolls out, there have been quite a few small but vital problems detected, and most of these PRs are targeting those problems. PRs in the 0.14 milestone will be cherrypicked onto the branch: those without it will only be in 0.15. The goal is to minimize secondary breakage: only bug fixes and doc improvements get put into the milestone now!

1. github.com/bevyengine/bevy/pul

A 2D camera example! This is the sort of "practical gamedev task" example that we're sorely missing. Lots of "how do each of the tools and primitives that Bevy provides" works, but very little advice that assembles those tools into user-facing workflows. You really need both.

Good back-and-forth with reviewers and the author: this is much stronger for it. I'm happy with this as learning material: merging.

GitHub2D top-down camera example by theredfish · Pull Request #12720 · bevyengine/bevyBy theredfish

2. github.com/bevyengine/bevy/pul

Ah, Francois's screenshot PR still doesn't have a secret added. Well, that gets the Ready-For-Final-Review label swapped out for Waiting-On-Author so it stops showing up in this search :P

GitHubCompare screenshots with main on PRs by mockersf · Pull Request #13248 · bevyengine/bevyBy mockersf

3. github.com/bevyengine/bevy/pul

And now for something much more exciting: the first work for upstreaming bevy_mod_picking! We're doing this in chunks: copy-pasting portions of the library with minimal adaptation to start. Once that's all in place, we'll make sure it works, add examples and do some tech debt cleanup.

I'm feeling good about getting this in place for 0.15 :D Sorely needed, and it'll be nice to share the load in its maintenance.

GitHubUpstream `CorePlugin` from `bevy_mod_picking` by NthTensor · Pull Request #13677 · bevyengine/bevyBy NthTensor

4. github.com/bevyengine/bevy/pul

A "usability" fix to our scene methods to make them more flexible. This PR makes me happy, because the author was able to swap from a +150 line feature to a +6 function signature change to meet the same needs. Engineering!

The author was hoping this would make 0.14, but that train has left. A shame, but this is a breaking change and it's not vital enough / impacting enough users to warrant bending the rules. Anyways, this is a nice consistency improvement. Merging!

GitHubAlign `Scene::write_to_world_with` to match `DynamicScene::write_to_world_with` by dmyyy · Pull Request #13714 · bevyengine/bevyBy dmyyy

5. github.com/bevyengine/bevy/pul

Another feature PR, but this one is non-breaking. This adds the ability to automatically segment up extruded 2D shapes. Really fun to see procedural geometry in action. Thanks math wizs!

I'm fine with this getting cherrypicked: it's non-breaking, low risk and any damage will be very well-isolated to a brand-new, relatively niche feature. Merging and adding to the 0.14 milestone.

GitHubAdd segments to `ExtrusionBuilder` by lynn-lumen · Pull Request #13719 · bevyengine/bevyBy lynn-lumen

6. github.com/bevyengine/bevy/pul

By contrast, *this* math PR by the same author is not getting added to the milestone. Inspired by a @acegikmo video about how lerp smoothing is flawed, it provides a trait to cover the correct mathematical requirements for smooth interpolation. Too impactful for a last minute addition, even without breaking changes! QC matters too.

Video: youtube.com/watch?v=LSNQuFEDOy

Animation's concerns have been allayed, quality is exceptional, there's ASCII art! Merging :)

GitHubStable interpolation and smooth following by mweatherley · Pull Request #13741 · bevyengine/bevyBy mweatherley

@acegikmo 7. github.com/bevyengine/bevy/pul

And *here's* a breaking change that I want to backport to 0.14 (is it really backporting before it's been released??). Jojojet previously made a PR to add functionality to our asset server to load assets in a custom async way (due to needs discovered at work), but discovered that their error handling strategy wasn't helpful.

This change allows a custom error type to be supplied. Very niche, and a dramatic improvement to a new API. Merging :)

GitHubImprove error handling for `AssetServer::add_async` by JoJoJet · Pull Request #13745 · bevyengine/bevyBy JoJoJet

@acegikmo 8. github.com/bevyengine/bevy/pul

A simple cleanup to our shader code, removing unused variables. People talk a lot about how shaders are hard to learn, painful to work with, complex and so on. But most of that is just terrible tooling (and language limitations). No dead code analysis, very basic language server, no fancy linters, bad error messages... Writing graphics code should be easier!

Anyways, change is fine. Merging :P

GitHubRemove unused mip_bias parameter from apply_normal_mapping by JMS55 · Pull Request #13752 · bevyengine/bevyBy JMS55

@acegikmo 9. github.com/bevyengine/bevy/pul

Improvements to the new color API (color to u8 array), which are getting cherrypicked to 0.14. This sort of thing is a huge victory for the release candidate: Bevy should be ready to use and delightful right on release day.

This author got sniped into being a contributor after complaining about a painful migration :D Really good back-and-forth with the rest of the working group on how to best solve these problems. I love onboarding new devs. Merging!

GitHubAdds back in way to convert color to u8 array, implemented for the two RGB color types, also renames Color::linear to Color::to_linear. by gagnus · Pull Request #13759 · bevyengine/bevyBy gagnus

10. github.com/bevyengine/bevy/pul

More docs and a rename for meshlets. Jasmine has really been leading this effort, and these changes look solid. Merging!

Go read their very detailed blog post about the technical details here: jms55.github.io/posts/2024-06-

GitHubMeshlet misc by JMS55 · Pull Request #13761 · bevyengine/bevyBy JMS55

11. github.com/bevyengine/bevy/pul

And this is a *nasty* regression, caught during the release candidate process. We managed to break event (and RemovedComponent) double-buffering, by adding an extra flush to subapps. Turns out this was intentional to make sure that the render app can use RemovedComponents correctly.

Ahhh tech debt. I expect that pretty much all of the concepts here will be gone in a year lol, in part due to nonsense interactions like this. Good tests, good fix, merge conflicts 😔

GitHubRemove extra call to clear_trackers by chrisjuchem · Pull Request #13762 · bevyengine/bevyBy chrisjuchem

12. github.com/bevyengine/bevy/pul

Solid work by the I-can't-believe-it's-not-a-working-group states gang. The system ordering of the transitions for our new computed states weren't ordered correctly, leading to subtle and hard-to-reproduce bugs.

Very pleased with this fix: this is an important bug. A previous version relied on a new `StatesRegistry` concept, which I pushed back on due to introducing new concepts for a bug fix. Now it's just system set ordering! Great stuff! Merging :D

GitHubAdd more granular system sets for state transition schedule ordering by MiniaczQ · Pull Request #13763 · bevyengine/bevyBy MiniaczQ

13. github.com/bevyengine/bevy/pul

A simple error message improvement. The error describes how a shader is "not loaded yet", but in most cases, the shader was *never* going to be loaded, likely due to a bad path. Both error messages are true, but the new one is a lot less misleading. This stuff adds up!

Great simple, easy to review fix from a new contributor. Merging.

GitHubClarify error message due to missing shader file by imrn99 · Pull Request #13766 · bevyengine/bevyBy imrn99

14. github.com/bevyengine/bevy/pul

Users on older hardware sometimes complain that Bevy is mysteriously slow. Most of the time, this is due to their GPU drivers not actually working! wgpu simply rejects broken, terrible graphics drivers, while many other programs try and work around them. There's a CPU fallback but it's very slow.

This PR adds a warning explaining what's wrong and how to fix it. Rerequesting a review from Francois and waiting; he had concerns about a proposed fix.

GitHubPrint warning when using llvmpipe by msvbg · Pull Request #13780 · bevyengine/bevyBy msvbg

15. github.com/bevyengine/bevy/pul

Another release-candidate-inspired PR. Ida, the author of the indomitable Bevy Cheatbook, was wondering about how to migrate some of her states code, and noticed that there was still a reference to the now-removed `apply_state_transition` system.

This PR cleans that up, and explains how to do the "manually update states" pattern that she was previously using. Great! Merging.

GitHubfix docs around `StateTransition` and remove references to `apply_sta… by lee-orr · Pull Request #13772 · bevyengine/bevyBy lee-orr

16. github.com/bevyengine/bevy/pul

Whether or not fog was enabled, the shader was branching on it. If you know anything about GPU programming: branches are very slow! Swap this to something closer to a compile-time decision and bam, zero-cost rendering feature. Compile-time here is "compiled at the start of the game on the user's machine", but same deal!

Reasonable, well-reviewed. Merging.

GitHubMake FOG_ENABLED a shader_def instead of material flag by IceSentry · Pull Request #13783 · bevyengine/bevyBy IceSentry

17. github.com/bevyengine/bevy/pul

A nice rename and consistency fix PR for our run conditions. Run conditions can be combined in 0.13 using `and_then` and `or_else`. But there are two problems here: first, why are we using these weird monadic names? Second, why not have the rest of the binary operations?

I spent a while socializing this change: bikeshedding can get intense but everyone thought it was a good idea.

Merging, but not cherrypicking: this is a new feature.

GitHubRe-name and Extend Run Conditions API by CupOfTeaJay · Pull Request #13784 · bevyengine/bevyBy CupOfTeaJay

I really like that a new contributor was able to get a relatively contentious but straightforward change in, especially in a reasonable period of time. Says really nice things about our culture and processes I think!

We do still struggle with new abstractions and big overhauls, but the more explicit status labelling, an intermediate category for controversy and especially working groups have done a great job building consensus.

Anyways, that's all the PRs for this week! I'm very pleased about the release candidate on several levels: less stress, more polish, fewer critical bugs, more time to update crates and docs...

Really delightful. 10/10 would recommend all projects do this.

Now if you'll excuse me, I'm going to go immerse myself in some crunchy coding (LWIM refactors!): these past few weeks have been all tech writing and PM stuff and I really need an excuse to do anything else.