public void LoadSmoothPreset(BlendShapePreset preset) { StopAllCoroutines(); preset.SetCoroutine(this); preset.SmoothBlend(mesh); }
public void SmoothBlendShape(BlendShapePreset preset) { StopAllCoroutines(); preset.SmoothBlend(this, mesh); }
public void SmoothBlendShape(BlendShapePreset preset) => LoadSmoothPreset(preset);