bevy/crates/bevy_pbr/src/volumetric_fog
Sludge 989f547080
Weak handle migration (#17695)
# Objective

- Make use of the new `weak_handle!` macro added in
https://github.com/bevyengine/bevy/pull/17384

## Solution

- Migrate bevy from `Handle::weak_from_u128` to the new `weak_handle!`
macro that takes a random UUID
- Deprecate `Handle::weak_from_u128`, since there are no remaining use
cases that can't also be addressed by constructing the type manually

## Testing

- `cargo run -p ci -- test`

---

## Migration Guide

Replace `Handle::weak_from_u128` with `weak_handle!` and a random UUID.
2025-02-05 22:44:20 +00:00
..
mod.rs Remove all deprecated code (#16338) 2025-01-05 20:33:39 +00:00
render.rs Weak handle migration (#17695) 2025-02-05 22:44:20 +00:00
volumetric_fog.wgsl Fix error in volumetric fog shader (#16677) 2024-12-06 08:49:18 +00:00