加入很多新内容,这波一块交了

This commit is contained in:
2026-04-08 20:53:41 +08:00
parent d9376833b6
commit 85dfff28dd
128 changed files with 14546 additions and 474 deletions
@@ -0,0 +1,20 @@
using UnityEngine;
using System.Collections.Generic;
[CreateAssetMenu(fileName = "userLevel_skills", menuName = "Player/UserLevel Skills SO")]
public class userLevel_skills_SO : ScriptableObject
{
[System.Serializable]
public class UserLevelSkillEntry
{
public int userLevel;
public string skillName;
[TextArea(3, 10)] public string skillDescription;
public string skillSummary;
public bool isEnabled;
public Sprite skillIcon;
public int thisLevelNeedExps;
}
public List<UserLevelSkillEntry> skills = new List<UserLevelSkillEntry>();
}