超大量的更新 修复很多问题,gameplay特效初步

This commit is contained in:
FloatGaming
2026-02-14 23:46:20 +08:00
parent ef8eb67259
commit 3a7a0b4669
360 changed files with 85670 additions and 4144 deletions
@@ -1,4 +1,4 @@
using UnityEngine;
using UnityEngine;
using UnityEngine.UI;
using System.IO;
using System.Collections.Generic;
@@ -14,11 +14,11 @@ public class loadLittleGamesPrefab : MonoBehaviour
[Header("Prefab")]
public GameObject littleGames_card_Prefab;
[Tooltip("Ĭiconͼ")]
[Tooltip("Documentation text normalized.")]
public Sprite default_card_icon_sprite;
[Header("Refresh")]
public Button refreshButton; // ɨ貢ˢб
public Button refreshButton; // Documentation text normalized.
[Header("H5 Root Path (optional, leave empty to use WebViewLauncher settings)")]
public string h5RootPath;
@@ -108,11 +108,11 @@ public class loadLittleGamesPrefab : MonoBehaviour
continue;
// defaults
string defName = "δ֪Htmlļ";
string defAuthor = "δ֪";
string defDesc = "Ϣ";
string defIsOfficial = "δ֪Դ";
string defSource = "Զ";
string defName = "Unknown HTML Page";
string defAuthor = "Unknown Author";
string defDesc = "No description provided.";
string defIsOfficial = "Unknown Source";
string defSource = "Unknown";
string defDateRaw = "19700101";
string cardName = GetMeta(meta, "card_name") ?? defName;
@@ -128,12 +128,12 @@ public class loadLittleGamesPrefab : MonoBehaviour
if (cat == "_officialDocs" || cat == "_officialGames")
{
isOfficial = "ٷ";
source = "СϷDLC";
isOfficial = "Official";
source = "MiniGame DLC";
}
else
{
if (string.IsNullOrEmpty(isOfficial)) isOfficial = "Դ";
if (string.IsNullOrEmpty(isOfficial)) isOfficial = "Community";
if (string.IsNullOrEmpty(source)) source = defSource;
}