public void ApplyExternal(ARKitFacialValues arkitFacialValues)
        {
            if (remapper == null)
            {
                remapper = new ARKitToBlendshapeRemapper(skin, blendShapeList, indexList, strengthMultiplierList);
            }

            remapper.Apply(arkitFacialValues);
        }
 private void Start()
 {
     remapper = new ARKitToBlendshapeRemapper(skin, blendShapeList, indexList, strengthMultiplierList);
 }