Change render pipeline, recreated project !!!!

This commit is contained in:
Vladimir Koshevarov
2023-02-21 13:51:12 +02:00
parent 1002e27db4
commit 7c26b80584
560 changed files with 38692 additions and 170144 deletions
+16
View File
@@ -0,0 +1,16 @@
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;
}
}