Table of Contents

Class BlendShapeProfile

Namespace
FishMMO.Shared
Assembly
FishMMO.Shared.dll

A collection of blend shape entries representing a character's body shape or an equipment item's blend shape overrides. Used to sync body blend shapes to equipment meshes that have matching shape keys.

[Serializable]
public class BlendShapeProfile
Inheritance
BlendShapeProfile
Inherited Members

Fields

Entries

Blend shape entries in this profile.

[Tooltip("Blend shape entries for this profile.")]
public BlendShapeEntry[] Entries

Field Value

BlendShapeEntry[]

Properties

Count

Returns the number of entries in this profile.

public int Count { get; }

Property Value

int

Methods

TryGetValue(string, out float)

Tries to get a blend shape value by name.

public bool TryGetValue(string name, out float value)

Parameters

name string

The blend shape name to look up.

value float

The value if found.

Returns

bool

True if the blend shape exists in this profile.