 4c4f47697c
			
		
	
	
		4c4f47697c
		
	
	
	
	
		
			
			# Objective - Adds a bloom pass for HDR-enabled Camera3ds. - Supersedes (and all credit due to!) https://github.com/bevyengine/bevy/pull/3430 and https://github.com/bevyengine/bevy/pull/2876  ## Solution - A threshold is applied to isolate emissive samples, and then a series of downscale and upscaling passes are applied and composited together. - Bloom is applied to 2d or 3d Cameras with hdr: true and a BloomSettings component. --- ## Changelog - Added a `core_pipeline::bloom::BloomSettings` component. - Added `BloomNode` that runs between the main pass and tonemapping. - Added a `BloomPlugin` that is loaded as part of CorePipelinePlugin. - Added a bloom example project. Co-authored-by: JMS55 <47158642+JMS55@users.noreply.github.com> Co-authored-by: Carter Anderson <mcanders1@gmail.com> Co-authored-by: DGriffin91 <github@dgdigital.net>
		
			
				
	
	
		
			34 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
| [package]
 | |
| name = "bevy_core_pipeline"
 | |
| version = "0.9.0-dev"
 | |
| edition = "2021"
 | |
| authors = [
 | |
|     "Bevy Contributors <bevyengine@gmail.com>",
 | |
|     "Carter Anderson <mcanders1@gmail.com>",
 | |
| ]
 | |
| description = "Provides a core render pipeline for Bevy Engine."
 | |
| homepage = "https://bevyengine.org"
 | |
| repository = "https://github.com/bevyengine/bevy"
 | |
| license = "MIT OR Apache-2.0"
 | |
| keywords = ["bevy"]
 | |
| 
 | |
| [features]
 | |
| trace = []
 | |
| webgl = []
 | |
| 
 | |
| [dependencies]
 | |
| # bevy
 | |
| bevy_app = { path = "../bevy_app", version = "0.9.0-dev" }
 | |
| bevy_asset = { path = "../bevy_asset", version = "0.9.0-dev" }
 | |
| bevy_derive = { path = "../bevy_derive", version = "0.9.0-dev" }
 | |
| bevy_ecs = { path = "../bevy_ecs", version = "0.9.0-dev" }
 | |
| bevy_reflect = { path = "../bevy_reflect", version = "0.9.0-dev" }
 | |
| bevy_render = { path = "../bevy_render", version = "0.9.0-dev" }
 | |
| bevy_transform = { path = "../bevy_transform", version = "0.9.0-dev" }
 | |
| bevy_math = { path = "../bevy_math", version = "0.9.0-dev" }
 | |
| bevy_utils = { path = "../bevy_utils", version = "0.9.0-dev" }
 | |
| 
 | |
| serde = { version = "1", features = ["derive"] }
 | |
| bitflags = "1.2"
 | |
| radsort = "0.1"
 |