aboutsummaryrefslogtreecommitdiff
path: root/src/components.rs
blob: cc6c471e306d702e3cdeb40f8c675c7de94cc391 (plain)
1
2
3
4
5
6
7
8
9
10
use bevy::{
    prelude::*,
    render::{extract_component::ExtractComponent, render_resource::ShaderType},
};

#[derive(Component, ShaderType, ExtractComponent, PartialEq, Clone, Default)]
pub struct OutlinePostProcessSettings {
    pub weight: f32,
    pub threshold: f32,
}