Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialMichael Perry
Courses Plus Student 2,097 PointsNew Enemy
Ok! so I made a new bird and gave it some waypoints and even gave it a "Animator component"! every thing works but for some reason it wont play the animation for the bird... GGRRRRR!......any help would be nice Please. ill past my code in a comment below! hope to here from somebody soon! till then back to work
1 Answer
Michael Perry
Courses Plus Student 2,097 PointsWOOOOOO! never mine I fix it haha ! yeah baby I feel good to day !
Michael Perry
Courses Plus Student 2,097 PointsMichael Perry
Courses Plus Student 2,097 Pointsusing System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.AI;
public class BlinkyMove : MonoBehaviour { public Transform[] points; private int destPoint = 0; private UnityEngine.AI.NavMeshAgent agent; private Animator blinkyAnimator;
}