版本: Unity 6 (6000.0)
语言英语
  • C#

AnimationLayerMixerPlayable.SetLayerMaskFromAvatarMask

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交的内容,但我们会阅读用户提出的每个更改建议,并在适用时进行更新。

关闭

提交失败

由于某种原因,您的更改建议无法提交。请 <a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

声明

public void SetLayerMaskFromAvatarMask(uint layerIndex, AvatarMask mask);

参数

layerIndex 图层索引。
mask 用于创建新图层蒙版的 AvatarMask。

描述

设置当前图层的蒙版。

此函数根据指定的 AvatarMask 生成一个图层蒙版,并将其应用于指定的图层索引。如果您更改了 AvatarMask,则需要再次调用此函数以更新图层蒙版。

using System.Collections.Generic;
using UnityEngine;

using UnityEngine.Playables; using UnityEngine.Animations;

public class LayerMixerPlayable : MonoBehaviour { public AnimationClip clip1; public AnimationClip clip2; public Transform leftShoulder;

PlayableGraph m_Graph; AnimationLayerMixerPlayable m_Mixer;

public float mixLevel = 0.5f;

AvatarMask mask;

public void Start() { Animator animator = GetComponent<Animator>();

mask = new AvatarMask(); mask.AddTransformPath(leftShoulder, true);

m_Graph = PlayableGraph.Create(); var playableOutput = AnimationPlayableOutput.Create(m_Graph, "LayerMixer", animator); playableOutput.SetSourcePlayable(m_Mixer);

// Create two clip playables var clipPlayable1 = AnimationClipPlayable.Create(m_Graph, clip1); var clipPlayable2 = AnimationClipPlayable.Create(m_Graph, clip2);

// Create mixer playable m_Mixer = AnimationLayerMixerPlayable.Create(m_Graph, 2);

// Create two layers, second is setup to override the first layer and affect only left shoulder and childs m_Mixer.ConnectInput(0, clipPlayable1, 0, 1.0f); m_Mixer.ConnectInput(1, clipPlayable2, 0, mixLevel);

m_Mixer.SetLayerMaskFromAvatarMask(1, mask);

m_Graph.Play(); }

public void Update() { m_Mixer.SetInputWeight(1, mixLevel); }

public void OnDestroy() { m_Graph.Destroy(); } }