ДВ СКОПИРУЙ ТЫ ЭТОТ НЕСЧАСТНЫЙ КУСОК КОДА ВМЕСТЕ С ОШИБКОЙ И ВСТАВЬ ТЕКСТОМ СЮДА
Подключи библиотеку включающую Text
Максим БеляковУченик (129)
16 часов назад
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Photon.Pun;
public class Player : MonoBehaviour
{
public float speed;
PhotonView view;
public Text textName;
void Start()
{
view = GetComponent<PhotonView>();
textName.text = view.Owner.NickName;
}
// Update is called once per frame
void Update()
{
if (view.IsMine)
{
Vector2 moveInput = new Vector2(Input.GetAxisRaw("Horizontal"), Input.GetAxisRaw("Vertical"));
Vector2 moveAmount = moveInput.normalized * speed * Time.deltaTime;
transform.position += (Vector3)moveAmount;
}
}
}