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 trialT. Linklater
412 PointsCannot enter playmode; errors need to be fixed
I created the code just as it was decribed in the video but I cannot enter the playmode now. It all appears to be fine. What is wrong?
The error listed said: Assets/Scripts/PlayerMovement.ca(19,28): error:CS1525: Unexpected symbol 'moveVertical'.
Here is a look at my code: using UnityEngine; using System.Collections;
public class PlayerMovement : MonoBehaviour {
private Animator playerAnimator;
private float moveHorizontal;
private float moveVertical;
private Vector3 movement;
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
moveHorizontal = Input.GetAxisRaw ("Horizontal")
moveVertical = Input.GetAxisRaw ("Vertical")
movement = new Vector3 (moveHorizontal, 0.0f, moveVertical);
}
}
1 Answer
Seth Kroger
56,413 PointsIt looks like you missed the semi-colons at the end of the first two lines of Update().
T. Linklater
412 PointsT. Linklater
412 PointsThat was exactly the problem. Thanks so much for the prompt response, Seth! Very much appreciated :)