示例#1
0
 public void LoadSmoothPreset(BlendShapePreset preset)
 {
     StopAllCoroutines();
     preset.SetCoroutine(this);
     preset.SmoothBlend(mesh);
 }
示例#2
0
 public void SmoothBlendShape(BlendShapePreset preset)
 {
     StopAllCoroutines();
     preset.SmoothBlend(this, mesh);
 }
示例#3
0
 public void SmoothBlendShape(BlendShapePreset preset) => LoadSmoothPreset(preset);