Razer Chroma support plugin for Bevy. Uses the Razer Chroma HTTP API to communicate with the Razer Chroma system.
Currently only supports WASM.
You will need Razer Chroma software installed to properly use this plugin.
If you don't have certain types of hardware devices, Razer also provides an emulator that you can use to test your effects.
General flow is that you need to register effects via Chroma::create_effect
to get an EffectHandle
, and then you can pass that handle to Chroma::apply_effect
to apply.
See the examples directory for more detailed examples.
Add the plugin to your app:
```rust use bevy::prelude::*; use bevymodchroma::{ Author, ChromaPlugin, ChromaRunnerInitializationSettings, InitRequest, SupportedDevice, };
fn main() { App::new() .addplugin(ChromaPlugin::new(ChromaRunnerInitializationSettings::new( InitRequest { title: "Your Bevy app title goes here", description: "Your Bevy app description goes here", author: Author { name: "Your name", contact: "Your contact", }, devicesupported: vec![ SupportedDevice::Keyboard, SupportedDevice::Mouse, //... ], category: "Category of your Bevy app goes here", }, ))) //... .run(); } ```
NOTE: The information you provide to
ChromaRunnerInitializationSettings
is displayed in the Razer Synapse connect menu!
Use the Chroma
parameter in systems to create and apply effects:
```rust use bevymodchroma::{Chroma, Effect, EffectHandle, MouseEffect};
fn redmouse(mut chroma: Chroma) { let redhandle = chroma.create_effect(Effect::Mouse(MouseEffect::Static { color: Color::RED.into(), }));
chroma.apply_effect(&red_handle);
} ```