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::*;

// top left corner
pub fn default_fps_container_node() -> Node {
    Node {
        position_type: PositionType::Absolute,
        width: Val::Auto,
        height: Val::Auto,
        left: Val::Px(6.0),
        top: Val::Px(6.0),
        ..default()
    }
}