13 lines
270 B
C#
13 lines
270 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
public class GameManager : MonoBehaviour
|
|
{
|
|
public Text txt_money;
|
|
|
|
void Update(){
|
|
txt_money.text = "$"+PlayerController.t.position.y.ToString();
|
|
}
|
|
}
|