public AnimationBlendMode blendMode ;

설명

Which blend mode should be used?

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; } }