Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Linda 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.