Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


ConfigureMaskFromClip(ref AvatarMask)

Copy the current masking settings from the clip to an AvatarMask.
Read time 1 minuteLast updated 10 days ago

Definition

  • Type: Method
  • Namespace: UnityEditor
  • Assembly: UnityEditor.CoreModule

ConfigureMaskFromClip(AvatarMask)

public void ConfigureMaskFromClip(ref AvatarMask mask)

Parameters

AvatarMask to which the masking values will be saved.

Remarks

When writing an AssetPostprocessor, use this method to copy the AvatarMask from your clip configuration so that you can modify it.

Examples

using UnityEditor;using UnityEngine;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 Object.DestroyImmediate(mask); }}