Files
Unity6ExampleProject/Assets/TutorialInfo/Scripts/Readme.cs
Minimata 19dde4bbb7
Some checks failed
Create tag, test, build and upload / BumpTag (push) Successful in 11s
Create tag, test, build and upload / Test (editmode) (push) Failing after 2m29s
Create tag, test, build and upload / Test (playmode) (push) Failing after 2m24s
Create tag, test, build and upload / Test (standalone) (push) Failing after 2m24s
Create tag, test, build and upload / Build (StandaloneLinux64) (push) Has been skipped
Create tag, test, build and upload / Build (StandaloneWindows) (push) Has been skipped
Create tag, test, build and upload / Build (WebGL) (push) Has been skipped
Initial commit
2025-06-18 23:27:10 +02:00

17 lines
302 B
C#

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;
}
}