Skip to content

Instantly share code, notes, and snippets.

@tsubaki
Created November 13, 2017 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tsubaki/d1f6ae6a525b930f06371b892493f5e3 to your computer and use it in GitHub Desktop.
Save tsubaki/d1f6ae6a525b930f06371b892493f5e3 to your computer and use it in GitHub Desktop.
SimpleAnimationでアニメーション再生
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PlayAnimation : MonoBehaviour
{
void Update()
{
if (Input.GetKeyDown (KeyCode.A)) {
GetComponent<SimpleAnimation> ().CrossFade ("Default", 0.5f);
}
if (Input.GetKeyDown (KeyCode.S)) {
GetComponent<SimpleAnimation> ().CrossFade ("Running", 0.5f);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment