aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md20
1 files changed, 10 insertions, 10 deletions
diff --git a/README.md b/README.md
index 5a885f9..aea419d 100644
--- a/README.md
+++ b/README.md
@@ -6,22 +6,22 @@ To see a list of supported file formats, see https://github.com/assimp/assimp#su
|Type |Description |
|-------|-------------------------------------------------------------------------------------|
-|uint |The magic number, the value will always be 0x036144AF. |
-|uint |Version of the file format. This is backwards compatible but not forwards compatible.|
+|u32 |The magic number, the value will always be 0x036144AF. |
+|u32 |Version of the file format. This is backwards compatible but not forwards compatible.|
|mesh[] |The mesh data. |
mesh:
|Type |Description |
|-----------|------------------------------------------------------------------------------------------------|
-|uint |The number of vertices, normals and optionally texture coordinates. |
+|u32 |The number of vertices, normals and optionally texture coordinates. |
|vec3f[] |A list of vertices. |
|vec3f[] |A list of normals. |
-|uint |1 if the model has texture coordinates, otherwise 0. |
+|u32 |1 if the model has texture coordinates, otherwise 0. |
|vec2f[]* |A list of texture coordinates. The number of texture coordinates matches the number of vertices.|
-|uint |The number of faces. |
+|u32 |The number of faces. |
|face[] |The face indices. |
-|uint |1 if the model has materials, otherwise 0. |
+|u32 |1 if the model has materials, otherwise 0. |
|material[3]|The material data. This is a list of [diffuse, specular, ambient] materials. |
vec2f:
@@ -43,15 +43,15 @@ face:
|Type|Description |
|----|-----------------|
-|uint|The first index. |
-|uint|The second index.|
-|uint|The third index. |
+|u32 |The first index. |
+|u32 |The second index.|
+|u32 |The third index. |
material:
|Type |Description |
|------|---------------------------------------------------------------------------|
-|uint |The number of textures. |
+|u32 |The number of textures. |
|char[]|The filepaths to the textures (relative). This is a null-terminated string.|
## TODO