Files
QuestAppLauncher/Assets/Scripts/AppEntry.cs
tverona1 6bca1d0c07 Support for renaming apps
- Adds support for renaming apps: By pressing A or X on the controller, you can choose an alternate app name / icon. You can reset these changes back to default in Settings.
2019-09-08 14:28:45 -07:00

27 lines
483 B
C#

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