Files
QuestAppLauncher/Assets/Scripts/AppEntry.cs
tverona1 333d17cffb Fix icon aspect ratio, fix Go controller scrolling
- Fixed icon aspect ratio: Icons now maintain their original aspect ratio
- Fixed Go controller scrolling (hopefully)
2019-09-01 12:12:50 -07:00

24 lines
383 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class AppEntry : MonoBehaviour
{
public GameObject sprite;
public string packageId;
public string appName;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}