From b6f6f900511e01f718f86cec358f636956f2a105 Mon Sep 17 00:00:00 2001 From: Cra0 Date: Mon, 22 Feb 2021 20:26:34 +1100 Subject: [PATCH] Update README.md --- README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/README.md b/README.md index a62180e..335de7a 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,34 @@ The BMD file format is a byproduct I created in 2013 to help me manage 3d mesh d * Material list (Information on how the mesh is textured) * Ability to store meta data +## Whats included? + +### Noesis Plugin +**plugins\Noesis\fmt_BinaryModelData_bmd.py** +Is a plugin for a popular model viewer called [Noesis](https://richwhitehouse.com/index.php?content=inc_projects.php&showproject=91). + +### 010Editor Template +**plugins\010Editor\BMD_Format.bt** +Used by my favrioute hex editor [010Editor](https://www.sweetscape.com/010editor) to help visualize the file format. + +### 3DSMax Plugin +**plugins\3DSMax\2012\BMDImport.dli** +Dated 3DSMax 2012 plugin for importing/exporting the file format. + +### BMDConvert + +Located at: **tools\bmdconvert.exe** is a tool you can use to test convert some files to the BMD file format. +``` +Usage: bmdconvert -f [FormatType] -x [UpAxis] --src path/to/source path/to/out +Format Types: OBJ,SMD +Axis: Y or Z +Example: bmdconvert -f OBJ -x Z --src O:/geom/Teapot.obj O:/geom/cTeapot.bmd +``` + + ## Improvements & Ideas * Store more information about the mesh (PBR materials?) * Compress triangle list or reference same value vertex floats * ?? (You can help decide) +