Skip to content

@orillusion/core


Enumeration: LayerBlendMode

Defined in: src/components/anim/graph/AnimationLayer.ts:3

Enumeration Members

Override

Override: 0

Defined in: src/components/anim/graph/AnimationLayer.ts:8

Replace the underlying pose with this layer's pose, blended by weight. Out = lerp(base, layer, weight)


Additive

Additive: 1

Defined in: src/components/anim/graph/AnimationLayer.ts:14

Add this layer's delta-from-rest on top of the base pose. Out = base + (layer - rest) * weight Useful for facial expressions, breathing, aim offsets.