using UnityEngine;
using System.Collections;
public class Player : MonoBehaviour {
// Use this for initialization
void Start () {
//player spawn point
//This is where the player is going to spawn
}
// Update is called once per frame
void Update () {
transform.Translate(Vector3.right);
this is really annoying every time i write even a line of code i get an error. i have just started learning c# and im trying to code a 2d character move script.