mirror of
https://github.com/bevyengine/bevy
synced 2024-12-23 19:43:07 +00:00
67cc605e9f
Fixes #12600 ## Solution Removed Into<AssetId<T>> for Handle<T> as proposed in Issue conversation, fixed dependent code ## Migration guide If you use passing Handle by value as AssetId, you should pass reference or call .id() method on it Before (0.13): `assets.insert(handle, value);` After (0.14): `assets.insert(&handle, value);` or `assets.insert(handle.id(), value);` |
||
---|---|---|
.. | ||
deferred | ||
light | ||
light_probe | ||
lightmap | ||
prepass | ||
render | ||
ssao | ||
bundle.rs | ||
extended_material.rs | ||
fog.rs | ||
lib.rs | ||
material.rs | ||
parallax.rs | ||
pbr_material.rs | ||
wireframe.rs |