The Galacean engine currently has 3 ways to debug materials:
Modify material properties through code, refer to tutorial.
Visual debugging through the Galacean Editor, refer to tutorial.
Export from 3D modeling software after adjusting glTF
The first two methods directly use the engine for rendering, providing a WYSIWYG experience with no visual differences.
However, designers generally use the 3rd method, which involves adjusting the visual effects in modeling software like C4D, Blender, etc., and then exporting to the engine for preview. They often find that the rendering results are inconsistent or even significantly different. The main reasons are:
Different rendering algorithms in different software.
Different lighting conditions.
Some assets cannot be exported to glTF files.
To address these differences, you can achieve the highest degree of visual fidelity through the following methods:
Export Unlit materials to the engine through baked maps.
Use the same environment maps (usually HDRI files), direct lighting, and other variables.
Only adjust properties and assets in the modeling software that can be exported to glTF.
If you encounter the above issues, you can refer to this tutorial to identify the specific reasons and then follow the corresponding solutions. If the problem persists, you can contact our team, and we will continuously improve this tutorial.
Currently, the most widely used algorithm in real-time rendering is the PBR algorithm, which has advantages like energy conservation, physical correctness, and ease of use. However, the specific implementation algorithms in different software are different, resulting in different rendering outcomes. Galacean uses the Cook-Torrance BRDF reflectance equation, optimized for mobile devices.
It is worth mentioning that although different algorithms can cause some visual differences, their physical principles are consistent. For example, the higher the metallicity, the stronger the environmental reflection and the weaker the diffuse reflection; the higher the roughness, the more blurred the environmental reflection, as shown below:
Like the real world, 3D scenes can also add direct and ambient light. By default, Galacean scenes have no light sources, only a blue-tinted solid color diffuse, as shown in the first image on the left; whereas many modeling software come with built-in light sources:
Ambient light based on cube textures enables IBL mode, requiring an HDRI map to simulate the surrounding environment, which can be downloaded online. By default, Galacean scenes do not have an HDRI map bound, whereas many modeling software come with a visually appealing surrounding environment:
The connection channel between the Galacean engine and modeling software is the glTF file. glTF supports standard PBR properties and general material properties, and supports plugins like ClearCoat, as shown below. Therefore, as long as the operations in the modeling software can be exported to glTF, the engine can load them through the loader. However, those additional operations, such as some parameters of vRay materials, cannot be exported to glTF files.
The primary prerequisite for ensuring visual fidelity is to debug the material in the same scene, i.e., the same lighting, the same ambient light, etc., and then choose either a real-time rendering solution or a baking solution.
As mentioned earlier, the engine does not come with direct light by default. The simplest way to maintain fidelity is to delete the lights in the modeling software, ensuring that both the modeling software and the Galacean engine only have ambient light (best performance).
If some scenes indeed require adding direct light, please ensure that the modeling software can export the glTF light plugin (Google search keyword "**** modeling software KHR_lights_punctual" ), such as selecting Punctual Lights when exporting glTF from Blender.
If the modeling software does not support exporting this lighting plugin, you can transfer it to Blender for export, or verbally describe the lighting data to the developers.
As mentioned earlier, the engine does not come with an environment map, i.e., HDRI map, by default, but modeling software usually does, such as Blender:
We can first download our favorite HDRI images from the internet, then debug them in the modeling software. Once satisfied, deliver the final HDRI to the developers (since glTF does not support exporting HDR).
Binding an environment map in the modeling software is very simple. You can Google search the keyword "*** modeling software environment IBL". Taking Blender as an example:
After unifying the lighting, we can choose the rendering solution. If you want the material to be affected by lighting, interact with light and shadow in real-time, or have some transparency and refraction requirements, then you should choose the real-time rendering solution, i.e., the engine's PBR solution.
As mentioned earlier, Galacean PBR uses the Cook-Torrance BRDF reflectance equation, which is relatively close to the Principled BSDF - GGX algorithm in Blender:
You can refer to the Blender official tutorial to debug the material parameters that can be exported to glTF. The same applies to other modeling software; you can Google the keyword “*** modeling software export glTF”.
Another relatively simple reference method is to import the glTF demo in the modeling software (click to download). The PBR properties in this demo are quite comprehensive and can be used as a reference for debugging. For example, after importing into Blender, the material panel displays as follows:
After exporting the glTF, you can drag the file into the glTF Viewer to check whether the corresponding colors, textures, parameters, etc., are correct:
Unlike real-time rendering, if your rendering scene is completely static, does not require light and shadow interaction, refraction, transparency, etc., then using a baking solution will better meet your artistic creation needs. This is because the baking solution can ignore the lighting, glTF support issues mentioned above; you can safely use the built-in renderer of the modeling software, powerful plugins like vRay, and finally export to glTF Unlit plugin through baked maps.
We also provide several tutorials for the baking solution. You can also Google keywords like “*** modeling software baking KHR_materials_unlit” to learn more details:
In the future, we will also invest in plugin developers to embed the Galacean preview plugin in various modeling software to ensure WYSIWYG, eliminating the steps of glTF file verification.