补充漏提交以及修改战斗场景数据

This commit is contained in:
YiHan0621
2025-08-29 17:50:23 +08:00
parent aefd03d8ff
commit d280aea1d0
27 changed files with 1306 additions and 16 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class SkyLadder : MonoBehaviour
{
private SkyLadderData data;
private void Start()
{
data = Resources.Load<SkyLadderData>("SkyLadderData/SkyLadderData");
for (int i = 1; i <= data.items.Length; i++)
{
var item = data.GetById(i);
Debug.Log($"{item.RankName}");
}
}
}