I'm making a case builder using THREE.js
, the basics are i want to be able to change the height/width/length
of a box, rotate it around, and also change the background color of the box.
This is it so far: http://design365hosting.co.uk/casebuilder3D/
The dimension changing works, as does the dragging of the box, now i'm working with the background color change.
The way i want this to work is by using transparent PNGs as the faces of the box, and setting background colors so that this background colour shows through the transparent PNG.
This is how I'm currently doing it:
var texture = THREE.ImageUtils.loadTexture("images/crate.png");
materials.push(new THREE.MeshBasicMaterial({color:0xFF0000, map: texture}));
as you can see I set the material to have a background colour of red and overlay the transparent PNG, problem is, three.js seems to ignore the background colour and just show the transparent PNG, meaning no colour shows through.
The expected result should be a red box with the overlayed PNG.
Hope that made sense, can anyone help?
Three.js MeshBasicMaterial
does not support what you are trying to do. In MeshBasicMaterial
, if the PNG is partially transparent, then the material will be partially transparent.
What you want, is the material to remain opaque, and the material color to show through instead.
You can do this by modifying the material's shader:
var material = new THREE.MeshPhongMaterial( {
color: 0x0080ff,
map: texture
} );
material.onBeforeCompile = function ( shader ) {
var custom_map_fragment = THREE.ShaderChunk.map_fragment.replace(
`diffuseColor *= texelColor;`,
`diffuseColor = vec4( mix( diffuse, texelColor.rgb, texelColor.a ), opacity );`
);
shader.fragmentShader = shader.fragmentShader.replace( '#include <map_fragment>', custom_map_fragment );
};
And here is a Fiddle: https://jsfiddle.net/17jmgn6r/
In the fiddle, the texture is a circle on a transparent background. You can see the color of the material show through.
three.js r.125
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With