Mineable 블록에 대해 전장의 안개 추가

그림자 안나오는 문제도 해결
This commit is contained in:
2026-01-17 20:14:12 +09:00
parent 443942f6ca
commit 8369e4d42f
47 changed files with 1991 additions and 2730 deletions

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