我想使用renderer.setClearColor (0xff0000, 0)
[setClearColor]:Changing three.js background to transparent or other color将背景颜色设置为空白,将不透明度设置为0,尽管背景不存在,但在页面上,有几乎没有模特
我添加了一些照片说明,但声誉不够,请查看链接:https://github.com/shunzizhan/threejsDemo/wiki/three-scene
答案 0 :(得分:1)
this.renderer = new WebGLRenderer({
antialias: true,
alpha: true
})
将属性alpha
设置为true,然后设置
this.renderer.setClearColor(0xffffff, 0)
它有效