Class BlendShapeKey
Represents a single keyframe in a blend shape animation, including its weight and vertex deltas.
Inherited Members
Namespace: TriLibExporter.Objects
Assembly: Assembly-CSharp.dll
Syntax
public class BlendShapeKey
Constructors
BlendShapeKey(float, Vector3[], Vector3[], Vector3[])
Initializes a new instance of the BlendShapeKey class.
Declaration
public BlendShapeKey(float weight, Vector3[] deltaVertices, Vector3[] deltaNormals, Vector3[] deltaTangents)
Parameters
Type | Name | Description |
---|---|---|
float | weight | The weight of the blend shape key. |
Vector3[] | deltaVertices | The array of vertex deltas for this blend shape key. |
Vector3[] | deltaNormals | The array of normal deltas for this blend shape key. |
Vector3[] | deltaTangents | The array of tangent deltas for this blend shape key. |
Fields
DeltaNormals
The array of normal deltas for this blend shape key.
Declaration
public readonly Vector3[] DeltaNormals
Field Value
Type | Description |
---|---|
Vector3[] |
DeltaTangents
The array of tangent deltas for this blend shape key.
Declaration
public readonly Vector3[] DeltaTangents
Field Value
Type | Description |
---|---|
Vector3[] |
DeltaVertices
The array of vertex deltas for this blend shape key.
Declaration
public readonly Vector3[] DeltaVertices
Field Value
Type | Description |
---|---|
Vector3[] |
OverrideCount
Overrides the count of deltas for this blend shape key.
Declaration
public int OverrideCount
Field Value
Type | Description |
---|---|
int |
Weight
The weight of this blend shape key.
Declaration
public float Weight
Field Value
Type | Description |
---|---|
float |