I'm trying to apply the shaders from the shaderLib but most of them either turn the node to complete white or black. Only the normal
shader seem to work.
This is how I apply it:
const shader = THREE.ShaderLib.depth;
const uniforms = shader.uniforms;
const material = new THREE.ShaderMaterial({
fragmentShader: shader.fragmentShader,
vertexShader: shader.vertexShader,
uniforms
})
this._viewer.impl.matman().addMaterial(
data.name, material, true)
And set the material of the fragment with:
function setMaterial(fragIds, material) {
const fragList = this._viewer.model.getFragmentList()
this.toArray(fragIds).forEach((fragId) => {
fragList.setMaterial(fragId, material)
})
this._viewer.impl.invalidate(true)
}
Just like in this example: https://forge.autodesk.com/blog/forge-viewer-custom-shaders-part-1
I also tried to add colors to the uniforms like that example but it didn't help.
Any ideas why they don't work?
As I said in the comment, Forge Viewer is using a privately owned
three.js
, and its'WebGLRender
didn't implement all functionalities asthree.js
, either. So, it might not support all functions in thethree.js
.To identify what happened to this case, you can consider providing a reproducible case demonstrating that, I will gladly pass it to our dev team. Those following items should be in the reproducible case:
Forge app
that can be run and debugged with a simple procedure to analyze its behavior lives in the sample model.three.js app
that can be run and demonstrated the shader effect you want. Note. Forge Viewer is using r71three.js
.If your reproducible case could not be posted here publicly, please send it to the
[email protected]
andremove sensitive data or information before you send
.======== Old response
Could you provide more detail for further debugging, please?
It seems to works fine on my side. Here are my test codes. It's tested on the Forge RCDB (https://forge-rcdb.autodesk.io/database?id=57efaf0377c8eb0a560ef467).
And Its' result is like this. Did it what you want?