using UnityEngine; using System.Collections; public class OnStartModle : MonoBehaviour { public Animation anim; // Use this for initialization void Start () { anim = this.GetComponent (); } // Update is called once per frame void Update () { anim.Play ("dragon_dizzy"); } }