mittens-engine 0.7.0

A Vulkan and OpenXR scene engine with ECS, reactive signals, and Meow Meow scripting
1
2
3
4
5
6
7
8
9
10
11
12
13
T {
    name = "outer"
    T {
        name = "btn_a"
        Style.padding_xy(2.0, 1.0).background_color([0.30, 0.55, 1.00, 1.0]) {}
        Text { "hello" }
    }
}

let b = query("#btn_a")
print(b)
let o = query("#outer")
print(o)