1
resposta

Cannot see my player when i press play

hello, I can't see my player when i press play i don't know if the problem is my script or not.

using System.Collections; using System.Collections.Generic; using UnityEngine;

public class playercontroller : MonoBehaviour {

// Use this for initialization
void Start () {
    transform.Translate(vector3.forward);

}

// Update is called once per frame
void Update () {
1 resposta

Hey, Joseph, how are you?

You can switch to the Scene view while on play to see if your player is moving, that's all we are trying to achieve here. (Don't change anything on the scene while playing because those changes will be reverted).

In a couple of videos we'll move the camera to a better place to have a better view of the game, that will solve this issue.