Skip to content

SET001/bevy_render_layers_manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bevy_render_layers_manager

A Bevy plugin to manage RenderLayers in app.

crates.io crates.io Bevy tracking

This plugin tracks usage of RenderLayers in app and provide method to get first free layer for your needs.

Usage

Add RenderLayersManagerPlugin in your app. This plugin adds RenderLayerManager resource with .get method to get first free layer.

You can also use .pick method that will return free layer and mark it as used.

Example

use bevy::prelude::*;
use bevy_render_layers_manager::*;

fn main() {
  let mut app = App::new();
  app
    .add_plugins(RenderLayersManagerPlugin)
    .add_systems(Startup, startup);
  app.run();
}

fn startup(layers_manager: Res<RenderLayerManager>) {
  println!("Current free layer is: {}", layers_manager.get());
}

Bevy Compatibility

bevy bevy_render_layers_manager
0.14.0 0.1.*

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

About

No description, website, or topics provided.

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages