文件系统安卓适配

This commit is contained in:
2025-12-17 20:52:56 +08:00
parent 529ba19c99
commit e58184bd00
12 changed files with 167 additions and 174 deletions
+2 -1
View File
@@ -4,6 +4,7 @@ using AibisDream.Framework;
using AibisDream.Kit;
using AibisDream.UI;
using UnityEngine;
using System.IO;
namespace AibisDream
{
@@ -12,7 +13,7 @@ namespace AibisDream
/// </summary>
public class SettingLoader
{
private static readonly string SettingPath = Application.streamingAssetsPath + "/Config/setting.json";
private static readonly string SettingPath = Path.Combine(Application.streamingAssetsPath, "Config", "setting.json");
private readonly ConfigContainer _container;