Search Unity

Animation again

Discussion in 'Animation' started by SyntaxTalksToMe, Jun 9, 2018.

  1. SyntaxTalksToMe

    SyntaxTalksToMe

    Joined:
    May 31, 2018
    Posts:
    2
    Hello,

    i want a "Destroy Animation" on a Asteroid. I write this Controller:

    public Animation ani;
    // Use this for initialization
    private void Start()
    {
    ani = GetComponent<Animation>();
    if (!ani.isPlaying)
    {
    ani.Play();
    }
    }


    The problem is, in inspector the field for Animation is greyed out. What i do wrong? :)

    Greetings
     
  2. Ermiq

    Ermiq

    Joined:
    May 1, 2018
    Posts:
    11