风速风向动画

This commit is contained in:
XuGaoFeng
2026-03-03 17:05:39 +08:00
parent 21ebd4c951
commit 2bc83901db
38 changed files with 3568 additions and 1741 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;
}
}