aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Silas Bartha <[email protected]>2024-04-24 23:35:25 -0400
committerLibravatar Silas Bartha <[email protected]>2024-04-24 23:36:16 -0400
commit4bdbe1ffbdd00192ac3beed1a4f1ac62c161109b (patch)
treeed6139b75c97983ee9adc0598db0c70ee0e68559
parent4d815c19c4cca9eeee978027d4c712b7b826cd6c (diff)
Re-Export Labelv0.1.1
-rw-r--r--Cargo.toml2
-rw-r--r--src/lib.rs2
2 files changed, 3 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 3563d2c..9145c1a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grex_outline_post_process"
-version = "0.1.0"
+version = "0.1.1"
edition = "2021"
[dependencies.bevy]
diff --git a/src/lib.rs b/src/lib.rs
index f5c7120..12dd5bb 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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}};
+pub use nodes::OutlineRenderLabel;
+
pub struct OutlinePostProcessPlugin;
pub mod components;