- Fixed icon aspect ratio: Icons now maintain their original aspect ratio - Fixed Go controller scrolling (hopefully)
24 lines
383 B
C#
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()
|
|
{
|
|
|
|
}
|
|
}
|