VersionSdk.cs 296 B

1234567891011121314
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.UI;
  5. public class VersionSdk : MonoBehaviour
  6. {
  7. // Start is called before the first frame update
  8. void Start()
  9. {
  10. this.GetComponent<Text>().text ="V "+ Application.version;
  11. }
  12. }