Changes:
- [BakerCli] Document support using XML file format
- [BakerCli] Added denoiser back
Example XML file:
<BakerDoc version="1.0.1-beta">
<!-- high definition models -->
<High readNormals="false">
<Model>
<Mesh path="C:/path/to/high_def_0.obj"/>
<Texture path="C:/path/to/high_def_0.tif"/>
</Model>
<Model>
<Mesh path="C:/path/to/high_def_1.obj"/>
<Texture path="C:/path/to/high_def_1.tif"/>
</Model>
</High>
<!-- /high definition models -->
<!-- low definition models -->
<Low readNormals="true">
<Model>
<Mesh path="C:/path/to/low_def.obj"/>
</Model>
</Low>
<!-- /low definition models -->
<!-- output maps -->
<Output compactMode="false" compactBatchSize="96">
<Texture type="ao" width="4096" height="4096" channels="1" depth="uint8" expansionCoefficient="0.035" inwardTracingOnly="false" denoise="false" samples="40" path="C:/my_path/to/output_ao.tif"/>
<Texture type="color" width="8192" height="8192" channels="3" depth="uint16" path="C:/my_path/to/output_albedo.tif"/>
</Output>
<!-- /output maps -->
</BakerDoc>
Then execute Baker with the following command:
"path/to/BakerCli.exe" --document="path/to/document_file.xml"