| | |

Asset Prefab preview image thumbnails are black, missing, outdated, or incorrect

Are you using Universal Rendering Pipeline (URP) and some prefab previews in your Project > Assets folders are black, missing (shown as blue cubes) or not reflecting changes you made to prefabs? Just right-click on one or more prefabs and select Reimport and wait a couple seconds. If the preview images are still black, missing…

| | |

Speeding up Addressable Assets Loading

Are you using Addressable assets in your project? Is loading very slow, especially while pressing Play in the Editor? Make sure you are loading a list of Tasks and running them in parallel instead of individually waiting for each Task to finish. // get locations of all Addressables var locations = await Addressables.LoadResourceLocationsAsync(label).Task; // this…