I am converting my materials to node materials, which generally involves replacing modifiers with node modifiers. For example, a material like this:
material = new THREE.MeshPhysicalMaterial({
color: 0x0000ff,
metalness: 1.0,
roughness: 0.7,
normalMap: NormalMapAddress,
});
becomes
material = new MeshPhysicalNodeMaterial({
colorNode: color(0x0000ff),
metalnessNode: float(1.0),
roughnessNode: float(0.7),
normalNode: normalMap(texture(NormalMapAddress)),
});
To use these Node modifiers, you also have to import the related items from Nodes.js, such as: color, float, metalness, roughness, texture, normalMap and MeshPhysicalNodeMaterial.
However, I have been unable to use this approach to add a Displacement Map.
Ideally, I should be able to use the same protocol that I used to load a Normal Map. But using
displacementNode: displacementMap(texture(DisplacementMapAddress)),
does not work. And when I try to import displacementMap from Nodes.js, I get an error message informing me that this item does not exist. I have also searched through the three.js Node directory for any reference to displacement and none appears to exist.
Is it still possible to add a displacement map to a node material? If so, what is the protocol?
(If the answer involves creating and referencing a shader, I would not mind because I am using a shader to create the displacement map anyways.)