Files
bansonic_beta_main/Assets/songsDatabase/dlcData/dlcData.cs
T
FloatGaming e7f4ac72d5 重做粗略选曲界面 浮动小游戏可开关
修复一些小bug和加入部分新功能
2025-12-30 03:26:39 +08:00

32 lines
706 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu(fileName = "NewDLCData", menuName = "EaseOut/dlcData")]
public class dlcData : ScriptableObject
{
[Header("DLC之图")]
public Sprite dlc_image;
[Header("DLC之ID")]
public int dlcID;
[Header("DLC名称")]
public string dlcName;
[Header("DLC出品人")]
public string dlcProducer;
[Header("DLC是否已解锁")]
public bool dlcIsUnlocked;
[Header("DLC简介")]
[TextArea(3,10)]
public string dlcDescription;
[Header("DLC发行日期 yyyy-mm-dd")]
public string dlcPublishDate;
[Header("DLC所含曲目(ScriptableObjects")]
public List<SongData> songList = new List<SongData>();
}