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
Editor.translation_space("world").rotation_space("local") {
    name = "editor_root"
    Transform.position(0.0, 0.0, 0.0).rotation_quat(0.0, 0.0, 0.0, 1.0).scale(1.0, 1.0, 1.0) {
        name = "scene_root"
        GLTF.new("assets/models/cat/cat.glb") {
            name = "avatar_gltf"
            Serialize.on() {
                name = "avatar_gltf_serialize"
            }
        }
    }
}