
Tue, 12/19/2023 - 09:04
Forums:
Enable path tracking:
aPrarms.IsGlobalIlluminationEnabled = true;
aPrarms.Method = Graphic3d_RenderingMode::Graphic3d_RM_RAYTRACING;
When rendering 30 models with pbr materials and BaseColorTexture present, the textures set later will be lost
Tue, 12/19/2023 - 12:02
hello, Could you please give a little more details?
Best regards, Dmitrii.
Wed, 12/20/2023 - 10:16
Thank you for your reply. I have reproduced the problem in the Cad Assistant. There is a lack of contrast material between non-GI rendering and GI rendering. This glb file contains a large number of texture maps
My code looks like this:
Set parameters
Setting IBL Add models and set pbr properties in custom AIS
Wed, 12/20/2023 - 09:37
Please check and share the Message Log in CAD Assistant to see if there are some warnings or errors (considerb enabling 'Verbose Log' in CAD Assistant settings to see more details). You may also have the log into text file.
Please also use 'code' tags on the Forum for inserting code snippets.
Wed, 12/20/2023 - 10:23
Thank you for your reply. The code and Message Log have been added
Wed, 12/20/2023 - 10:52
Could you share the model or at least some problematic part of it? Maybe model contains some material extensions to glTF 2 core, supported by Blender, but not by OCCT glTF reader...
Wed, 12/20/2023 - 11:24
Unable to upload files larger than 5M, I split the model into 4 pieces
I did "myAISContext->EraseAll(true)" before import; ", respectively import the split model, no white material appears; But remove "myAISContext->EraseAll(true); ", continuous import, after the import of the model will lose materials
The split model in the Cad Assistant is also GI rendering normal, you can merge into a glb to test
Wed, 12/20/2023 - 13:38
Current implementation of Metalic-Roughness materials in OCCT Path-Tracing engine has a limitation. When metal-roughness texture is provided, it expects metallness to be set to 1.0 within material itself, (e.g. texture should define metallness factor with no extra multiplier), otherwise converted BRDF material becomes invalid. This description could be found only in GLSL source code, though.
In this model, metallness is set to `0.0`, which triggers this issue in OCCT. Although model is valid in terms of glTF 2.0 (metallness factors of material and texture should be multiplied together), but you may set metallness to 1.0 to workaround the limitation.
Thu, 12/21/2023 - 10:29
Thank you very much for your answer