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 trialThanitsak Leuangsupornpong
7,490 PointsSomething wrong with this code, please help.
I think all of my code is spelled correct, but it still have an error, "Type UnityEngine.Transform' does not contain a definition for
positon' and no extension method positon' of type
UnityEngine.Transform' could be found (are you missing a using directive or an assembly reference?)".
My code
using UnityEngine; using System.Collections;
public class FollowCamera : MonoBehaviour {
[SerializeField]
private Transform player;
[SerializeField]
private Vector3 offset;
private float cameraFollowSpeed = 5f;
// Update is called once per frame
void Update () {
Vector3 newPosition = player.positon + offset;
transform.position = Vector3.Lerp (transform.position, newPosition, cameraFollowSpeed * Time.deltaTime);
}
}
Thank you!
1 Answer
Jeremy Faith
Courses Plus Student 56,696 PointsIn your Update method you need to change positon to position.
void Update () { Vector3 newPosition = player.positon + offset;
This should fix the error. Hope this helps.
Thanitsak Leuangsupornpong
7,490 PointsThanitsak Leuangsupornpong
7,490 PointsThank you, it work!