20 lines
425 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
namespace Assets.Scenes.Ride.Scripts
{
public class VersionScript : MonoBehaviour
{
void Start()
{
var appVersion = transform.GetComponent<Text>();
if (appVersion != null)
{
appVersion.text = "V"+App.AppVersion;
}
}
}
}