Babylon JS - 如何制作透明背景

Babylon JS - How can I make the transparent background

我有一个在线项目 运行 Babylon JS,我需要在其中删除灰色和白色背景(Babylon JS 默认具有),并使 canvas 完全透明。

我需要查看 canvas 后面的内容,但我不能...

:(

如何完成,编辑 .js 或直接从我自己的 html 代码?

访问我的项目here

和 .js here

谢谢!

您好,您应该可以拨打:

scene.autoClear = false

其他选项:

scene.clearColor = new BABYLON.Color4(0, 0, 0, 0);