public void SetMorphPose(string name, MorphPose morphPose) { int index; if (_morphNameMap.TryGetValue(name, out index)) { SetMorphPose(index, morphPose); } }
public void SetMorphPose(int index, MorphPose morphPose) { MorphRates[index] = morphPose.Weight; }