Нашел на просторах интернета скрипт который считывает счет и все работает, но не высвечивается сам счет и высвечивается ошибка "Object reference not set to an instance of an object".
P.S помогите мне ещё настроить местоположение String ( Счетчика )
Код
using UnityEngine;
using UnityEngine.UI;
using System.Collections;
public class ScoreSystem : MonoBehaviour
{
public GameObject Shar;
public float score;
private Transform target;
public Text txt;
void Start()
{
target = GameObject.Find("Shar").transform;
}
void Update()
{
EnterScore();
}
void EnterScore()
{
if (target.position.y < score)
{
score = target.position.y;
}
txt.text = score.ToString();
if (txt.text.IndexOf('.') != -1)
txt.text = txt.text.Remove(txt.text.IndexOf('.'));
}
}