Skip to content

Toolbar starter plugin for Bevy, manualy modify code for your needs

License

ManevilleF/bevy_toolbar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bevy Toolbar

Usage:

This is starter for your own game-specific tools, clone source and manually add it to [workspace] section in Cargo.toml.

Now add it to src/main.rs and files in bevy_toolbar folder to your needs.

use bevy::prelude::*;
+ use bevy_toolbar::*;

fn main() {
   App::new()
       .add_plugins(DefaultPlugins)
+      .add_plugins(ToolbarPlugins)
       .run();
}

When you open game, two panels should be rendered on top and the bottom. Top panel contains buttons which opens menus with tools, bottom panel show useful window informations like current title, vsync status, fps, window state and more.

License

bevy_toolbar is relased as Public Domain library see LICENSE.

About

Toolbar starter plugin for Bevy, manualy modify code for your needs

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages