Unity 6.3
0 онлайн 78 гостей 3 в системе
Вход

AnimationState.blendMode

Declaration

public AnimationBlendMode blendMode;

Описание

Какой режим смешивания следует использовать?

using UnityEngine;
using System.Collections;

public class ExampleScript : MonoBehaviour { public Animation anim;

void Start() { // Set the leanLeft animation to blend additively anim["leanLeft"].blendMode = AnimationBlendMode.Additive; } }