Initial Unity 6.4 URP project setup

This commit is contained in:
Matt F 2026-04-23 18:40:54 -07:00
commit d06a5e3d75
79 changed files with 8406 additions and 0 deletions

View file

@ -0,0 +1,20 @@
using System;
using UnityEngine;
using UnityEngine.UIElements;
public class Readme : ScriptableObject
{
public StyleSheet commonStyle;
public StyleSheet darkStyle;
public StyleSheet lightStyle;
public Texture2D icon;
public string title;
public Section[] sections;
public bool loadedLayout;
[Serializable]
public class Section
{
public string heading, text, linkText, url;
}
}