- Home /
CS8025 Parsing Error Please Help
I get CS8025 Parsing Error at 19,9 . Please Help !!!
using UnityEngine;
using System.Collections;
public class Movement : MonoBehaviour {
public float PlayerSpeed = 5.00f ;
private float forimp = 0.00f ;
// Use this for initialization
void Start () {
forimp = Input.GetAxis("Vertical") * PlayerSpeed ;
}
// Update is called once per frame
void Update () {
transform.Translate(0, 0, forimp);
}
Comment
Best Answer
Answer by robertbu · Jan 20, 2014 at 05:47 PM
You are just missing the closing '}' at the end of the file that closes the class. Note in Monodevelop, if you put your cursor on a bracket, it will highlight the matching (if any) bracket.
Your answer

Follow this Question
Related Questions
Compile Errors for Script 1 Answer
error CS8025: Parsing error 1 Answer
Parsing error Terror! 1 Answer
Parser Error 0 Answers
CS8025 Parser error 2 Answers