Updated docs for bevy::render::RenderSystems (#21586)

# Objective

- Fixes #16654 

## Solution

- Updated the doc string and linked to TemporaryRenderEntity.

## Testing

- Built the documentation locally and verified that the links render and
navigate correctly.
This commit is contained in:
Adarsh Das
2025-10-20 00:17:31 +05:30
committed by GitHub
parent 585961da4e
commit 14a3c9d011
+2 -1
View File
@@ -186,7 +186,8 @@ pub enum RenderSystems {
Render,
/// Cleanup render resources here.
Cleanup,
/// Final cleanup occurs: all entities will be despawned.
/// Final cleanup occurs: any entities with
/// [`TemporaryRenderEntity`](sync_world::TemporaryRenderEntity) will be despawned.
///
/// Runs after [`Cleanup`](RenderSystems::Cleanup).
PostCleanup,