• G#

AnimationState.blendMode

publik AnimationBlendMode blendMode;

Description

Mode campuran mana yang harus digunakan?

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