Removed TOTU 103

This commit is contained in:
Ignacio Gómez Puga
2025-03-04 12:04:52 -06:00
commit 5847d844a5
675 changed files with 76582 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
// Copyright 2022-2024 Niantic.
using UnityEngine;
using UnityEngine.UI;
public class VersionRead : MonoBehaviour
{
[SerializeField]
private Text uiTextBox;
private const string SamplesVersion = "3.10.0";
void Awake()
{
Screen.orientation = ScreenOrientation.Portrait;
}
// Start is called before the first frame update
void Start()
{
//uiTextBox.text = "ARDK: " + Niantic.Lightship.AR.Settings.Metadata.Version +
// "\n" + "Shared AR: " + Niantic.Lightship.SharedAR.Settings.Metadata.SharedArVersion +
// "\n" + "Samples: " + SamplesVersion;
}
}