李桃 91dcf061d0 新建urp项目模版 10 months ago
..
Editor 91dcf061d0 新建urp项目模版 10 months ago
Editor.meta 91dcf061d0 新建urp项目模版 10 months ago
Readme.cs 91dcf061d0 新建urp项目模版 10 months ago
Readme.cs.meta 91dcf061d0 新建urp项目模版 10 months ago

Readme.cs

using System;
using UnityEngine;

public class Readme : ScriptableObject
{
public Texture2D icon;
public string title;
public Section[] sections;
public bool loadedLayout;

[Serializable]
public class Section
{
public string heading, text, linkText, url;
}
}