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 trialLinda Lutterbei
854 PointsI created the script and saved it and also saved the scene but when I click on bird I do not see target listed
For NavMesh I created the script and saved it, but when I save the scene and click on bird on the left but target is not listed on the right. Can someone tell me why it is not showing?
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class BirdMovement : MonoBehaviour {
[SerializeField]
private Transform target;
private NavMeshAgent birdAgent;
private Animator birdAnimator;
// Use this for initialization
void Start () {
birdAgent = GetComponent<NavMeshAgent> ();
birdAnimator = GetComponenent<Animator> ();
}
// Update is called once per frame
void Update () {
// set the bird's destination
birdAgent.SetDestination (target.position);
// measure the magnitude of the NavMesAgent's velocity
float speed = birdAgent.velocity.magnitude;
// pass the velocity to the animator component
birdAnimator.SetFloat ("Speed", speed);
}
}
1 Answer
Linda Lutterbei
854 PointsIt's a spelling error, my mistake, it is resolved now.