Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
新手问题:如何在 web-gl 中制作 3D 对象,始终站在另一个 3D 对象前面。
谷歌搜索没有帮助。
谢谢你。
在不实际将对象移动到其他对象之前的情况下,您需要:
另一种方法是关闭深度测试,用gl.disable(gl.DEPTH_TEST),但我没有这样做,所以我不知道你可能会遇到什么问题。第一种选择是稳定且防弹的。:)
gl.disable(gl.DEPTH_TEST)
希望这可以帮助。