using UnityEngine; using System.Collections; public class VersionDisplay : MonoBehaviour { void Start() { UILabel label = GetComponent<UILabel>(); label.text = "v"+VersionChecker.BUNDLE_VERSION_NUMBER_FROM_PLAYER_SETTINGS; } }