bevy/crates/bevy_core_pipeline/src
Nicola Papale 83de94f9f9
Register a few missed reflect components (#8807)
# Objective

-  Some reflect components weren't properly registered.

## Solution

- We register them
- I also sorted the register lines in `Plugin::build` in `bevy_ui`

### Note

How I did I find them:

- I picked up the list of `Component`s from the `Component` trait page
in rustdoc.
- Then I tried to register all of them. Removing the registration when
it doesn't implement `Reflect` to pass compilation.
- Then I added `app.register_type_data::<T, Foo>()`, for all Reflect
components. It panics if `T` is not registered.
- I repeated the last line N times until bevy stopped panicking at
startup

---

## Changelog

- Register the following components: `PrimaryWindow` `Fxaa`
`FogSettings` `NotShadowCaster` `NotShadowReceiver` `CalculatedClip`
`RelativeCursorPosition`
2023-06-10 23:19:39 +00:00
..
blit Webgpu support (#8336) 2023-05-04 22:07:57 +00:00
bloom Apply codebase changes in preparation for StandardMaterial transmission (#8704) 2023-05-30 14:21:53 +00:00
contrast_adaptive_sharpening Webgpu support (#8336) 2023-05-04 22:07:57 +00:00
core_2d Add ViewNode to simplify render node management (#8118) 2023-05-08 19:42:23 +00:00
core_3d Change Camera3dBundle::tonemapping to Default (#8753) 2023-06-05 01:50:03 +00:00
fullscreen_vertex_shader Built-in skybox (#8275) 2023-04-02 10:57:12 +00:00
fxaa Register a few missed reflect components (#8807) 2023-06-10 23:19:39 +00:00
prepass Apply codebase changes in preparation for StandardMaterial transmission (#8704) 2023-05-30 14:21:53 +00:00
skybox Webgpu support (#8336) 2023-05-04 22:07:57 +00:00
taa Use ViewNode for TAA (#8732) 2023-06-01 04:42:41 +00:00
tonemapping Change default tonemapping method (#8685) 2023-05-29 15:36:21 +00:00
upscaling Apply codebase changes in preparation for StandardMaterial transmission (#8704) 2023-05-30 14:21:53 +00:00
clear_color.rs Make Resource trait opt-in, requiring #[derive(Resource)] V2 (#5577) 2022-08-08 21:36:35 +00:00
lib.rs Suppress the clippy::type_complexity lint (#8313) 2023-04-06 21:27:36 +00:00
msaa_writeback.rs Use RenderGraphApp in more places (#8298) 2023-04-05 20:57:56 +00:00