famiq 0.3.1

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

/// Marker component for identifying the modal background.
#[derive(Component)]
pub struct IsFamiqDialog;

/// Component that keep tracking of modal show/hide animation.
#[derive(Component)]
pub struct AnimationProgress(pub f32);