famiq 0.3.1

Experimental GUI library, powered by Bevy engine.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use bevy::prelude::*;
use super::*;

/// Marker component for identifying a Famiq circular widget.
/// field 0 is for triggering Changed filter
#[derive(Component)]
pub struct IsFamiqCircular(pub usize);

#[derive(Component)]
pub struct CircularMaterialHandle(pub Option<Handle<CircularMaterial>>);

#[derive(Component)]
pub struct SpinnerColor(pub Color);