Re-Exported Label
This commit is contained in:
parent
f98b27592b
commit
0a2d9f22a3
@ -10,7 +10,7 @@ use bevy::{
|
|||||||
pub struct DitherPostProcessSettings(Handle<Image>);
|
pub struct DitherPostProcessSettings(Handle<Image>);
|
||||||
|
|
||||||
impl DitherPostProcessSettings {
|
impl DitherPostProcessSettings {
|
||||||
pub fn new(level: u32, mut images: ResMut<Assets<Image>>) -> Self {
|
pub fn new(level: u32,images: &mut ResMut<Assets<Image>>) -> Self {
|
||||||
let power = level + 1;
|
let power = level + 1;
|
||||||
let map_size: u32 = 1 << power;
|
let map_size: u32 = 1 << power;
|
||||||
let mut buffer = Vec::<u8>::new();
|
let mut buffer = Vec::<u8>::new();
|
||||||
|
@ -2,6 +2,8 @@ use bevy::{prelude::*, render::{RenderApp, render_graph::{RenderGraphApp, ViewNo
|
|||||||
|
|
||||||
use crate::components::DitherPostProcessSettings;
|
use crate::components::DitherPostProcessSettings;
|
||||||
|
|
||||||
|
pub use nodes::DitherRenderLabel;
|
||||||
|
|
||||||
pub struct DitherPostProcessPlugin;
|
pub struct DitherPostProcessPlugin;
|
||||||
|
|
||||||
pub mod components;
|
pub mod components;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user