CreateBlendShapeFrame() public method

public CreateBlendShapeFrame ( BlendShape blendshape, float weight, string undoName ) : BlendShapeFrame
blendshape BlendShape
weight float
undoName string
return BlendShapeFrame
Beispiel #1
0
        void CreateBlendshape()
        {
            if (spriteMeshCache)
            {
                BlendShape blendShape = spriteMeshCache.CreateBlendshape("New BlendShape", "Create BlendShape");

                spriteMeshCache.selectedBlendshape = blendShape;

                spriteMeshCache.CreateBlendShapeFrame(blendShape, 100f, "Create BlendShape");

                spriteMeshCache.blendShapeWeight = 100f;
            }
        }