Firstborn/Assets/RPG Creation Kit/Scripts/_ General/GameVersionText.cs
Schaken-Mods 959e80cf72 assets upload
assets upload description.
2023-03-28 12:16:30 -05:00

19 lines
439 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RPGCreationKit;
using TMPro;
namespace RPGCreationKit
{
/// <summary>
/// Attach this to a TMPRO text to make it display the game version
/// </summary>
public class GameVersionText : MonoBehaviour
{
private void Start()
{
GetComponent<TextMeshProUGUI>().text = RCKSettings.GAME_VERSION;
}
}
}