Re-Exported Label

This commit is contained in:
Silas Bartha 2024-04-24 23:32:40 -04:00
parent f98b27592b
commit 0a2d9f22a3
Signed by: soaos
GPG Key ID: 9BD3DCC0D56A09B2
2 changed files with 3 additions and 1 deletions

View File

@ -10,7 +10,7 @@ use bevy::{
pub struct DitherPostProcessSettings(Handle<Image>);
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 map_size: u32 = 1 << power;
let mut buffer = Vec::<u8>::new();

View File

@ -2,6 +2,8 @@ use bevy::{prelude::*, render::{RenderApp, render_graph::{RenderGraphApp, ViewNo
use crate::components::DitherPostProcessSettings;
pub use nodes::DitherRenderLabel;
pub struct DitherPostProcessPlugin;
pub mod components;