Initial Unity 6.4 URP project setup
This commit is contained in:
commit
d06a5e3d75
79 changed files with 8406 additions and 0 deletions
20
Assets/TutorialInfo/Readme.cs
Normal file
20
Assets/TutorialInfo/Readme.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue