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.
使用 WebGLDeferredRenderer 时似乎找不到如何更改背景颜色。
渲染器.clearColor = 0xff0000; 不起作用。
谢谢
WebGLDeferredRenderer 只是 WebGLRenderer 的一个包装器,您可以通过 WebGLDeferredRenderer.renderer 访问 WebGLRenderer 的功能,例如:
renderer.renderer.setClearColor(clearColor);