blob: f8cd30ac9aed2f56386b6047a54523084cf6ea2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using TMPro;
using UnityEngine;
public class CrownPos : MonoBehaviour
{
public TextMeshProUGUI text;
public float GetOffset()
{
if (!(text.text == ""))
{
return 0.45f;
}
return 0f;
}
}
|