Cs 1022 unite не запускается игра с кодом выдаёт ошибку где ошибка
Стёпа Неверко
Ученик
(150),
на голосовании
3 месяца назад
не запускается где ошибка using System.Collections; using System.Collections.Generic; using UnityEngine;
public class PlayGame : MonoBehaviour public Vector2 moveVector; { public Rigidbody2D rb; // Start is called before the first frame update void Start() { public Rigidbody2D rb; }
// Update is called once per frame void Update() { Walk(); } void Walk () { moveVector.x = Input.GetAxisRaw("Horizontal"); rb.velocity = new Vector2(moveVector.x * speed, rb.velocity.y); } }