I am using revision 71.
How you can see on images, i can escape some objects in vision, when i am using transparent material.
Sorry, i don't know how to explain my problem better.
renderer.sortObjects = true
Asked
Active
Viewed 50 times
2

WestLangley
- 102,557
- 10
- 276
- 276

Алексей Максимов
- 113
- 2
- 9
-
1See if `renderOrder` helps you: http://stackoverflow.com/questions/15994944/transparent-objects-in-threejs/15995475#15995475 – WestLangley Aug 12 '15 at 15:25
-
thank you! I have used `transparenty = true` for all materials and if it was not transparent opacity was 1. Now I am using this, and it works: `opacity: (textures_library[colorSchemeID].opacity<1.0)?textures_library[colorSchemeID].opacity:undefined, transparent:(textures_library[colorSchemeID].opacity<1.0)?true:false` – Алексей Максимов Aug 13 '15 at 07:21
1 Answers
0
It's a common problem with no 'simple' solution. See here for details: Transparency Sorting

Frederic Gaudet
- 161
- 1
- 5
-
I think your answer is helpful, but I have found another solution – Алексей Максимов Aug 13 '15 at 07:22