Second question,
is there a way to achieve a multitexture material,
with different textures stacked above each other?
Like when I set material.map
but instead
material.map[0] = texture1
material.map[1] = texture2
material.map[2] = texture3
With eacth of the map slots modifiable independently—
1 Like
drcmda
2
it’s like photoshop layers, each one has a blend mode.
2 Likes
You can assign an array of materials to a mesh:
mesh.material = [material1,material2] etc.
If you have the materials set up with transparency, you might be able to get layering.
When I do it like this:
mesh.material = [material1,material2] etc.
everything is just black, despite not getting an error message.
2 Likes
OK I solved the Problem to my full satisfaction.
I just needed to add groups to the geometrybuffer of the mesh…
Now it works like a charm 
2 Likes
Ahh damn good catch. I forgot that part… apologies. 