16 lines
311 B
C#
16 lines
311 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using TMPro;
|
|
|
|
//thomas09
|
|
public class RemoveScoreTextAtStart : MonoBehaviour
|
|
{
|
|
private TextMeshProUGUI thisText;
|
|
void Awake()
|
|
{
|
|
thisText = GetComponent<TextMeshProUGUI>();
|
|
thisText.text = "";
|
|
}
|
|
}
|