Social icons + Better screen support

This commit is contained in:
2025-06-06 12:30:31 -07:00
parent fc98158a81
commit e1b978eac3
9 changed files with 1621 additions and 12 deletions

View File

@@ -0,0 +1,15 @@
using UnityEngine;
using UnityEngine.UI;
public class ButtonToURL : MonoBehaviour
{
public string url;
void Awake()
{
gameObject.GetComponent<Button>().onClick.AddListener(() =>
{
Application.OpenURL(url);
});
}
}