Files
ProjectMD/Assets/TutorialInfo/Scripts/Readme.cs
Dal4segno 8369e4d42f Mineable 블록에 대해 전장의 안개 추가
그림자 안나오는 문제도 해결
2026-01-17 20:14:12 +09: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;
}
}