Version: 5.6
public void ConfigureClipFromMask (AvatarMask mask);

파라미터

mask AvatarMask from which the mask settings will be imported.

설명

Copy the mask settings from an AvatarMask to the clip configuration.

When writing an AssetPostprocessor, use this method to copy an AvatarMask to your clip configuration.

See also: ModelImporterClipAnimation.ConfigureMaskFromClip.

public class CopyAvatarMask : AssetPostprocessor
{
    void OnPreprocessAnimation()
    {
        var modelImporter = assetImporter as ModelImporter;

//Create a new AvatarMask to edit the mask var mask = new AvatarMask(); var clips = modelImporter.clipAnimations;

//Acquire the mask from the clip clips[0].ConfigureMaskFromClip(ref mask);

//Filter out the first non-root (0) bone mask.SetTransformActive(1, false);

//Apply the mask back to the clip clips[0].ConfigureClipFromMask(mask);

//Apply the clips back to the ModelImporter modelImporter.clipAnimations = clips;

//Destroy the AvatarMask since we're not using it anymore DestroyImmediate(mask); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961