Re-Export Label

This commit is contained in:
Silas Bartha 2024-04-24 23:35:25 -04:00
parent 4d815c19c4
commit 4bdbe1ffbd
Signed by: soaos
GPG Key ID: 9BD3DCC0D56A09B2
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "grex_outline_post_process" name = "grex_outline_post_process"
version = "0.1.0" version = "0.1.1"
edition = "2021" edition = "2021"
[dependencies.bevy] [dependencies.bevy]

View File

@ -1,5 +1,7 @@
use bevy::{prelude::*, render::{RenderApp, extract_component::{UniformComponentPlugin, ExtractComponentPlugin}, render_graph::{RenderGraphApp, ViewNodeRunner}}, asset::embedded_asset, core_pipeline::core_3d::graph::{Core3d, Node3d}}; use bevy::{prelude::*, render::{RenderApp, extract_component::{UniformComponentPlugin, ExtractComponentPlugin}, render_graph::{RenderGraphApp, ViewNodeRunner}}, asset::embedded_asset, core_pipeline::core_3d::graph::{Core3d, Node3d}};
pub use nodes::OutlineRenderLabel;
pub struct OutlinePostProcessPlugin; pub struct OutlinePostProcessPlugin;
pub mod components; pub mod components;