using renderOrder in three.js

那年仲夏 提交于 2019-12-05 02:59:36

问题


I want to have two overlapping objects in a scene but I want to define which object should be drawn first. I have a sample of the code here: http://jsfiddle.net/sg02e5sm/1/

I'm using renderOrder = 1 for the second object to make it appear always on top of the first object (as long as they have the same Z value), but it's not working.


回答1:


renderOrder does not make something appear "on top". It controls the order in which objects are rendered.

If you want your 2nd plane to be "on top", you can add

mesh.material.depthTest = false;

for the 2nd plane, for example.

fiddle: http://jsfiddle.net/sg02e5sm/2/

Alternatively, you can implement two render passes, as described in this SO answer.

three.js r.71



来源:https://stackoverflow.com/questions/30407288/using-renderorder-in-three-js

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!