diff options
Diffstat (limited to 'a.md')
-rw-r--r-- | a.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -7,7 +7,7 @@ type Res = u128 02 respond_resource(name: Res, data: Vec<u8>) 03 add(id: Obj, prefab: Res) 04 remove(id: Obj) -05 position(id: Obj, pos: Vec3) +05 position(id: Obj, pos: Vec3, rot: Vec3) 06 pose(id: Obj, params: Vec<f32>) 07 parent(parent: Obj, child: Obj) 08 sound(id: Obj, data: Vec<u8>) @@ -38,7 +38,7 @@ type Part = { ### Mesh ``` -[vertex count:u32] [index count:u32] ([x:f32] [y:f32] [z:f32] [u:f32] [v:f32])* ([n:u32])* +[vertex count:u16] [index count:u16] ([x:f32] [y:f32] [z:f32] [u:f32] [v:f32])* ([n:u16])* ``` ### Texture |