three.js 中的全局复合操作
Global composite operation in three.js
Globalcomposite 在 html5 canvas 中可用。它在threejs中可用吗?如何在three.js中实现destination out复合操作?
谢谢。
- 如果您使用 three.js '
CanvasRenderers
,您可以使用 globalCompositeOperation
,因为它们用于 2d
上下文。
- 如果您使用的是
webgl
上下文,着色器基本上一切皆有可能。正如 Shiladittya 的评论所述,three.js 还提供了 blending modes (see this example)。它们位于 material 属性 blending
.
Globalcomposite 在 html5 canvas 中可用。它在threejs中可用吗?如何在three.js中实现destination out复合操作?
谢谢。
- 如果您使用 three.js '
CanvasRenderers
,您可以使用globalCompositeOperation
,因为它们用于2d
上下文。 - 如果您使用的是
webgl
上下文,着色器基本上一切皆有可能。正如 Shiladittya 的评论所述,three.js 还提供了 blending modes (see this example)。它们位于 material 属性blending
.