2

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

WestLangley
  • 102,557
  • 10
  • 276
  • 276
  • 1
    See 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 Answers1

0

It's a common problem with no 'simple' solution. See here for details: Transparency Sorting

Frederic Gaudet
  • 161
  • 1
  • 5