客户端rsa,冗余清理,bug修复,安卓build问题

This commit is contained in:
FloatGaming
2026-07-14 01:43:49 +08:00
parent fd22501f71
commit f8985d91d2
682 changed files with 4595 additions and 11216 deletions
+160
View File
@@ -0,0 +1,160 @@
#if UNITY_EDITOR
using System.Collections.Generic;
using System.Text;
using UnityEditor;
using UnityEditor.Build;
using UnityEditor.Build.Reporting;
using UnityEngine;
/// <summary>
/// 构建前防线:若随包发布的玩家进度数据(Player_SO / AllyHero_SO / SongData
/// 仍带有非零测试值,直接中断构建。
///
/// 目的:杜绝"忘记跑一键初始化 → 测试存档随安装包发布 → 玩家首启被灌入 999988
/// 金币等测试数据"的事故(这是历史上多次出现的存档污染根因)。
///
/// 只做只读校验,不改动任何资产;发现问题时抛出 BuildFailedException 并给出
/// 明确指引(跑 Tools/Packaging/一键初始化打包设置)。
/// </summary>
public sealed class PackagingBuildGuard : IPreprocessBuildWithReport
{
public int callbackOrder => 0;
public void OnPreprocessBuild(BuildReport report)
{
var problems = new List<string>();
CheckPlayers(problems);
CheckHeroes(problems);
CheckSongs(problems);
if (problems.Count == 0)
{
return;
}
var sb = new StringBuilder();
sb.AppendLine("检测到随包发布的玩家进度数据仍带测试值,已中断构建。");
sb.AppendLine("请先执行菜单:Tools/Packaging/一键初始化打包设置(恢复默认),再重新打包。");
sb.AppendLine();
sb.AppendLine("问题明细:");
int shown = 0;
foreach (var p in problems)
{
sb.AppendLine(" - " + p);
if (++shown >= 40)
{
sb.AppendLine(" - ...(其余 " + (problems.Count - shown) + " 项省略)");
break;
}
}
Debug.LogError("[PackagingBuildGuard]\n" + sb);
throw new BuildFailedException(sb.ToString());
}
private static void CheckPlayers(List<string> problems)
{
string[] intFields =
{
"player_coins", "player_material", "player_currentEXP", "player_currentLevel",
"commonExpBottle78001", "mediumExpBottle78002", "superiorExpBottle78003",
"supremeExpBottle78004", "extraordinaryExpBottle78005", "celestialExpBottle78006",
"dushMaterial78021", "dushMaterial78022", "dushMaterial78023", "dushMaterial78024",
};
foreach (var guid in AssetDatabase.FindAssets("t:Player_SO"))
{
string path = AssetDatabase.GUIDToAssetPath(guid);
var so = AssetDatabase.LoadAssetAtPath<Player_SO>(path);
if (so == null) continue;
var s = new SerializedObject(so);
foreach (var f in intFields)
{
var prop = s.FindProperty(f);
if (prop != null && prop.intValue != 0)
{
problems.Add(path + " :: " + f + " = " + prop.intValue);
}
}
var rank = s.FindProperty("uRankingScore");
if (rank != null && Mathf.Abs(rank.floatValue) > 0.0001f)
{
problems.Add(path + " :: uRankingScore = " + rank.floatValue);
}
}
}
private static void CheckHeroes(List<string> problems)
{
string[] intFields =
{
"ally_currentEXP", "ally_growthUnlockedTierIndex",
"ally_battleDeployCount", "ally_finishCount", "ally_mvpCount",
};
foreach (var guid in AssetDatabase.FindAssets("t:AllyHero_SO"))
{
string path = AssetDatabase.GUIDToAssetPath(guid);
var so = AssetDatabase.LoadAssetAtPath<AllyHero_SO>(path);
if (so == null) continue;
var s = new SerializedObject(so);
foreach (var f in intFields)
{
var prop = s.FindProperty(f);
if (prop != null && prop.intValue != 0)
{
problems.Add(path + " :: " + f + " = " + prop.intValue);
}
}
var join = s.FindProperty("ally_joinDateUtcTicks");
if (join != null && join.longValue != 0L)
{
problems.Add(path + " :: ally_joinDateUtcTicks = " + join.longValue);
}
}
}
private static void CheckSongs(List<string> problems)
{
string[] recordFields =
{
"lastScoreForThisDifficulty", "chartPersonalRecordForThisDifficulty",
"idolPersonalRecordForThisDifficulty", "totalPersonalRecordForThisDifficulty",
};
foreach (var guid in AssetDatabase.FindAssets("t:SongData"))
{
string path = AssetDatabase.GUIDToAssetPath(guid);
var so = AssetDatabase.LoadAssetAtPath<SongData>(path);
if (so == null) continue;
var s = new SerializedObject(so);
var enter = s.FindProperty("game_enterTimes");
if (enter != null && enter.intValue != 0)
{
problems.Add(path + " :: game_enterTimes = " + enter.intValue);
}
var chartFiles = s.FindProperty("chartFiles");
if (chartFiles != null && chartFiles.isArray)
{
for (int i = 0; i < chartFiles.arraySize; i++)
{
var entry = chartFiles.GetArrayElementAtIndex(i);
foreach (var f in recordFields)
{
var prop = entry.FindPropertyRelative(f);
if (prop != null && prop.intValue != 0)
{
problems.Add(path + " :: chartFiles[" + i + "]." + f + " = " + prop.intValue);
}
}
}
}
}
}
}
#endif
@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 821a652caceb13346a933a59d5de5f90
+64
View File
@@ -35,6 +35,7 @@ public static class PackagingResetTool
"将执行以下重置(仅玩家进度,不改配置/解锁/技能配装):\n\n" +
"1. 玩家:金币、材料、经验、等级清零\n" +
"2. 英雄:经验、成长阶位、自动突破、等级锁、出战/完成/MVP 统计、入队日期清零\n" +
"2.5 歌曲:游玩次数、累计时长、各难度成绩记录清零(歌曲解锁/谱面配置不动)\n" +
"3. 装备:删除 " + GeneratedEquipmentFolder + " 下所有生成装备,清除英雄已装备引用\n" +
"4. 商店:所有物品 purchasedCount、user_has_read 清零(限购配置 itemPurchaseQuota 不动)\n" +
"5. 清理本机测试存档(.cache_bridge 货币/成长/装备/商店存档,不含拥有权账本)与相关 PlayerPrefs\n\n" +
@@ -56,6 +57,7 @@ public static class PackagingResetTool
errors += ResetPlayers(report);
errors += ResetHeroes(report);
errors += ResetSongs(report);
errors += DeleteGeneratedEquipmentAssets(report);
errors += ResetStoreItems(report);
}
@@ -160,6 +162,68 @@ public static class PackagingResetTool
return 0;
}
private static int ResetSongs(StringBuilder report)
{
int count = 0;
int charts = 0;
foreach (var guid in AssetDatabase.FindAssets("t:SongData"))
{
string path = AssetDatabase.GUIDToAssetPath(guid);
var so = AssetDatabase.LoadAssetAtPath<SongData>(path);
if (so == null)
{
continue;
}
var serialized = new SerializedObject(so);
// 顶层游玩进度(不动 songID / isUnlocked / bpm / 谱面配置等)。
SetStringIfPresent(serialized, "usernameID", string.Empty);
SetIntIfPresent(serialized, "game_enterTimes", 0);
SetFloatIfPresent(serialized, "time_totalPlayingTime", 0f);
// 逐难度成绩记录(chartFiles 数组内),只清成绩,保留难度/敌人/谱面配置。
var chartFiles = serialized.FindProperty("chartFiles");
if (chartFiles != null && chartFiles.isArray)
{
for (int i = 0; i < chartFiles.arraySize; i++)
{
var entry = chartFiles.GetArrayElementAtIndex(i);
SetChildInt(entry, "lastScoreForThisDifficulty", 0);
SetChildInt(entry, "chartPersonalRecordForThisDifficulty", 0);
SetChildInt(entry, "idolPersonalRecordForThisDifficulty", 0);
SetChildInt(entry, "totalPersonalRecordForThisDifficulty", 0);
SetChildFloat(entry, "levelProgressForThisDifficulty", 0f);
charts++;
}
}
serialized.ApplyModifiedPropertiesWithoutUndo();
EditorUtility.SetDirty(so);
count++;
}
report.AppendLine("歌曲资产已重置:" + count + " 个 SongData(游玩次数/时长/" + charts + " 条难度成绩记录)。");
return 0;
}
private static void SetChildInt(SerializedProperty parent, string field, int value)
{
var prop = parent.FindPropertyRelative(field);
if (prop != null)
{
prop.intValue = value;
}
}
private static void SetChildFloat(SerializedProperty parent, string field, float value)
{
var prop = parent.FindPropertyRelative(field);
if (prop != null)
{
prop.floatValue = value;
}
}
private static int DeleteGeneratedEquipmentAssets(StringBuilder report)
{
if (!AssetDatabase.IsValidFolder(GeneratedEquipmentFolder))
+18 -3
View File
@@ -11,6 +11,7 @@ GameObject:
- component: {fileID: 1026901177260465494}
- component: {fileID: 6547744825235139397}
- component: {fileID: 2886771985255225193}
- component: {fileID: 8202483137837931122}
m_Layer: 0
m_Name: loading
m_TagString: Untagged
@@ -34,9 +35,9 @@ RectTransform:
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0.5}
m_AnchorMax: {x: 0.5, y: 0.5}
m_AnchoredPosition: {x: 794, y: -474}
m_SizeDelta: {x: 160, y: 30}
m_Pivot: {x: 0.5, y: 0.5}
m_AnchoredPosition: {x: 874, y: -474}
m_SizeDelta: {x: 0, y: 30}
m_Pivot: {x: 1, y: 0.5}
--- !u!222 &6547744825235139397
CanvasRenderer:
m_ObjectHideFlags: 0
@@ -79,6 +80,20 @@ MonoBehaviour:
m_VerticalOverflow: 0
m_LineSpacing: 1
m_Text: "\u52A0\u8F7D\u4E2D..."
--- !u!114 &8202483137837931122
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2548307509960470973}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3}
m_Name:
m_EditorClassIdentifier:
m_HorizontalFit: 2
m_VerticalFit: 0
--- !u!1 &5322044918174838164
GameObject:
m_ObjectHideFlags: 0
@@ -12,19 +12,19 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: 27e379f45b1bb88449756219caee2f89, type: 3}
m_Name: playerData_uniqueData
m_EditorClassIdentifier:
player_currentEXP: 802
player_coins: 999988
player_material: 486
player_currentEXP: 0
player_coins: 0
player_material: 0
player_currentLevel: 0
commonExpBottle78001: 1
mediumExpBottle78002: 2
superiorExpBottle78003: 1
supremeExpBottle78004: 1
extraordinaryExpBottle78005: 3
commonExpBottle78001: 0
mediumExpBottle78002: 0
superiorExpBottle78003: 0
supremeExpBottle78004: 0
extraordinaryExpBottle78005: 0
celestialExpBottle78006: 0
uRankingScore: 0.6457693
dushMaterial78021: 1
dushMaterial78022: 1
uRankingScore: 0
dushMaterial78021: 0
dushMaterial78022: 0
dushMaterial78023: 0
dushMaterial78024: 0
firstLaunchDate: 2026-03-16
firstLaunchDate:
@@ -107,7 +107,7 @@ MonoBehaviour:
ally_battleDeployCount: 0
ally_finishCount: 0
ally_mvpCount: 0
ally_joinDateUtcTicks: 639193639302687480
ally_joinDateUtcTicks: 0
behaviourAxes:
- axisName: "\u9898\u6D77\u6218\u672F"
value: 0
@@ -258,6 +258,6 @@ MonoBehaviour:
skillDescriptionsText: "\u3010\u534F\u5FC3\u5408\u4F5C\u3011\u76F8\u90BB\u5076\u50CF\u91CA\u653E\u6280\u80FD\u65F6\uFF0C\u81EA\u8EAB\u83B7\u53D6\u7B49\u540C\u4E8E\u6CD5\u529B\u503C\u4E0A\u96502%\u7684\u6CD5\u529B\u503C\uFF1B\u81EA\u8EAB\u83B7\u5F97\u201C\u4EA4\u7ED9\u4F60\uFF01\u201D\u3002\n\n\u201C\u4EA4\u7ED9\u4F60\uFF01\u201D\uFF1A\u5C06\u81EA\u8EAB\u4E0B\u4E00\u6B21\u53D7\u5230\u7684\u4F24\u5BB3\u6216\u83B7\u5F97\u7684\u589E\u76CA\u8F6C\u79FB\u7ED9\u76F8\u90BB\u5076\u50CF\u3002"
thisSkill_levelLimit: 4
isSpecialSkill: 0
equippedSkillGroupIDs: 31e8cc01
equippedSkillGroupIDs: 31e8cc0138e8cc0136e8cc0137e8cc01
equippedEquipment: {fileID: 0}
equippedEquipmentId: type0_20260325_00000008
@@ -15,29 +15,17 @@ MonoBehaviour:
fatherType: 1
isUnlocked: 1
class_id: 501001
class_name: "\u4F60\u597D"
class_image: {fileID: 0}
class_name: "\u524D\u8A00"
class_image: {fileID: 21300000, guid: 9d64dfe23766f5143aeaf5b8c4ae1ccd, type: 3}
itemRarity: 3
class_description: "\u6211\u4FDD\u6301\u7740\u6124\u6012\u4F46\u4F60\u770B\u4E0D\u51FA\u6765\n\u56E0\u4E3A\u6211\u6709\u5FAE\u7B11\u5507"
usageTag: 0
class_description: "\u6211\u4E0E\u72FC\u85C9\u4E4B\u5730\u4E0E\u72FC\u85C9\u5DE5\u4F5C"
sonList:
- son_isUnlocked: 1
son_id: 0
son_name: 1238971
son_name: "\u524D\u8A00 #1"
son_image: {fileID: 0}
son_description: 124151
son_title:
son_passage:
- son_isUnlocked: 1
son_id: 0
son_name: "\u6BD4\u6BD4\u62C9\u5E03"
son_image: {fileID: 0}
son_description: 112312312
son_title: "\u6211\u53EB\u5B54\u5609\u5F6C"
son_passage: "\u6211\u662Fsb"
- son_isUnlocked: 0
son_id: 0
son_name: "\u6BD4\u6BD4\u62C9\u5E03"
son_image: {fileID: 0}
son_description: 112312312
son_title:
son_passage:
son_detailsImage: {fileID: 21300000, guid: ea48dcb32602ae34d80a24fcae4260ec, type: 3}
son_description: "\u81EA\u6628\u65E5\u8D77\uFF0C\u6211\u6B63\u5F0F\u62C5\u4EFB\u4E86\u516C\u53F8\u5206\u90E8\u2014\u2014Filelink\u201C\u5076\u50CF\u201D\u6863\u6848\u9986\u7684\u6863\u6848\u4E13\u5458\u4E00\u804C......"
son_title: "\u524D\u8A00 #1"
son_passage: "\u81EA\u6628\u65E5\u8D77\uFF0C\u6211\u6B63\u5F0F\u62C5\u4EFB\u4E86\u516C\u53F8\u5206\u90E8\u2014\u2014Filelink\u201C\u5076\u50CF\u201D\u6863\u6848\u9986\u7684\u6863\u6848\u4E13\u5458\u4E00\u804C\uFF0C\u4E3B\u8981\u8D1F\u8D23\u6B8B\u7F3A\u6863\u6848\u7684\u8865\u5145\u3001\u5F52\u6574\u4EE5\u53CA\u6536\u96C6\u5DE5\u4F5C\u3002\u5728\u8FD9\u4E00\u70B9\u4E0A\uFF0C\u6211\u4E0ESonia\u7684\u804C\u8D23\u5B8C\u5168\u4E00\u81F4\uFF0C\u6CA1\u4EC0\u4E48\u4E0D\u540C\u3002\r\n\r\n\u5F53\u5DE6\u811A\u521A\u8FC8\u8FDB\u5927\u95E8\u65F6\uFF0C\u6211\u4FBF\u9690\u7EA6\u4EA7\u751F\u4E86\u4E00\u79CD\u611F\u89C9\uFF1A\u8FD9\u4E5F\u8BB8\u7684\u786E\u662F\u6211\u6240\u5411\u5F80\u7684\uFF0C\u5728\u90A3\u7247\u201C\u6781\u4E50\u51C0\u571F\u201D\u4E2D\u5E72\u7740\u7684\u65B0\u9C9C\u6709\u8DA3\u7684\u6D3B\u2026\u2026\u4F46\u73B0\u5728\u4E0B\u5B9A\u8BBA\u8FD8\u4E3A\u65F6\u8FC7\u65E9\u3002\u6BD5\u7ADF\uFF0C\u5728\u201C\u6700\u5408\u9002\u7684\u4EBA\u9009\u201D\u8FD9\u65B9\u9762\uFF0C\u516C\u53F8\u5185\u90E8\u5C31\u66FE\u5F15\u8D77\u8FC7\u597D\u51E0\u6B21\u53E3\u89D2\uFF0C\u800C\u4E14\u4E4B\u524D\u6765\u5230\u8FD9\u91CC\u7684\u4EBA\uFF0C\u65E0\u4E00\u4F8B\u5916\u90FD\u65E0\u6CD5\u80DC\u4EFB\u3002\r\n\r\n\u6211\u8BE5\u8D28\u95EE\u81EA\u5DF1\uFF1A\u6211\u4E0E\u4ED6\u4EEC\u6709\u4F55\u4E0D\u540C\uFF1F\u4E3A\u4F55\u6211\u4F1A\u9F13\u8D77\u52C7\u6C14\u9009\u62E9\u6765\u5230\u8FD9\u4E2A\u5730\u65B9\uFF1F\r\n\r\n\u7B97\u4E86\uFF0C\u8BF4\u8FD9\u4E9B\u4E5F\u6CA1\u4EC0\u4E48\u7528\uFF0C\u8FD8\u662F\u5C3D\u5FEB\u9002\u5E94\u8FD9\u91CC\u7684\u4E00\u5207\u5427\uFF0C\u6BD5\u7ADF\u6211\u5DF2\u7ECF\u521D\u6B65\u9886\u6559\u8FC7\u5B83\u7684\u201C\u5A01\u98CE\u201D\u4E86\u3002\r\n"
@@ -14,30 +14,18 @@ MonoBehaviour:
m_EditorClassIdentifier:
fatherType: 1
isUnlocked: 1
class_id: 501001
class_name: "\u4F60\u597D"
class_id: 501002
class_name: "\u6863\u6848\u4E13\u5458\u4E0E\u52A9\u7406Sonia"
class_image: {fileID: 0}
itemRarity: 3
usageTag: 0
class_description: "\u6211\u4FDD\u6301\u7740\u6124\u6012\u4F46\u4F60\u770B\u4E0D\u51FA\u6765\n\u56E0\u4E3A\u6211\u6709\u5FAE\u7B11\u5507"
sonList:
- son_isUnlocked: 1
son_id: 0
son_name: 1238971
son_name: "\u6863\u6848\u4E13\u5458\u4E0E\u52A9\u7406Sonia #1"
son_image: {fileID: 0}
son_description: 124151
son_title:
son_passage:
- son_isUnlocked: 1
son_id: 0
son_name: "\u6BD4\u6BD4\u62C9\u5E03"
son_image: {fileID: 0}
son_description: 112312312
son_title:
son_passage:
- son_isUnlocked: 0
son_id: 0
son_name: "\u6BD4\u6BD4\u62C9\u5E03"
son_image: {fileID: 0}
son_description: 112312312
son_title:
son_passage:
son_detailsImage: {fileID: 21300000, guid: ea48dcb32602ae34d80a24fcae4260ec, type: 3}
son_description: "\u6211\u4F5C\u4E3ABansonic\u516C\u53F8\u7684\u6587\u804C\u2026\u2026\u5199\u4E0B\u8FD9\u4E9B\u8C8C\u4F3C\u6CA1\u4EC0\u4E48\u7528\u2026\u2026\u7B97\u4E86......"
son_title: "\u6863\u6848\u4E13\u5458\u4E0E\u52A9\u7406Sonia #1"
son_passage: "\u6211\u4F5C\u4E3ABansonic\u516C\u53F8\u7684\u6587\u804C\u2026\u2026\u5199\u4E0B\u8FD9\u4E9B\u8C8C\u4F3C\u6CA1\u4EC0\u4E48\u7528\u2026\u2026\u7B97\u4E86\uFF0C\u4E5F\u8BB8\u6211\u5BF9\u81EA\u6211\u7684\u8BA4\u77E5\u76F8\u5F53\u6A21\u7CCA\uFF0C\u53C8\u4E5F\u8BB8\u672A\u6765\u67D0\u5929\u4F1A\u6709\u4EBA\u7FFB\u8D77\u8FD9\u672C\u4E0D\u8D77\u773C\u7684\u518C\u5B50\uFF0C\u6BD5\u7ADF\u6211\u6709\u53EF\u80FD\u4F1A\u79BB\u5C97\u3002\r\n\r\n\u6211\u66FE\u662F\u4E00\u540D\u666E\u901A\u7684\u6587\u804C\u4EBA\u5458\uFF0C\u4E4B\u524D\u5728Bansonic\u516C\u53F8\u5DE5\u4F5C\uFF0C\u73B0\u5982\u4ECA\u88AB\u8C03\u81F3Bansonic\u7684\u5206\u90E8\uFF0C\u4E5F\u5C31\u662F\u5728Filelink\u91CC\u62C5\u4EFB\u6863\u6848\u4E13\u5458\u3002Sonia\u4E5F\u66FE\u5728Bansonic\u5DE5\u4F5C\uFF0C\u5979\u540C\u6211\u7684\u5DE5\u4F5C\u5185\u5BB9\u4E00\u81F4\u3002\u4E0D\u5982\u8BF4\u662F\u6211\u4EEC\u4E24\u4E2A\u4EBA\u6765\u9F50\u5FC3\u534F\u529B\uFF0C\u628A\u5982\u4ECA\u5806\u79EF\u4E0B\u6765\u7684\u6D3B\u7ED9\u5E72\u5B8C\uFF0C\u56E0\u4E3A\u8FD9\u5DE5\u4F5C\u91CF\u4E00\u4E2A\u4EBA\u53EF\u80FD\u771F\u7684\u5403\u4E0D\u6D88\u3002\r\n\r\n\u603B\u4E4B\uFF0C\u6211\u7684\u65E5\u5E38\u5DE5\u4F5C\u4FBF\u662F\u4E0D\u65AD\u5C06\u90A3\u4E9B\u6240\u8C13\u7684\u201C\u8FC7\u53BB\u7684\u4EBA\u201D\u91CD\u6784\u51FA\u6765\u3002\u65E0\u8BBA\u5979\u4EEC\u662F\u4ECE\u4E0D\u77E5\u662F\u6211\u3001\u8FD8\u662FSonia\u7684\u8111\u6D77\u91CC\u6D6E\u73B0\uFF0C\u6291\u6216\u4EC5\u4EC5\u662F\u6839\u636E\u6863\u6848\u5BF9\u5916\u89C2\u7684\u63CF\u8FF0\u6784\u9020\u800C\u6210\uFF0C\u6211\u4EEC\u90FD\u8981\u5C06\u5979\u4EEC\u62C9\u5230\u5E73\u53F0\u4E0A\u6218\u6597\u3002\u800C\u6211\u4EEC\u8D1F\u8D23\u5728\u4E00\u4FA7\u65C1\u89C2\u3001\u4E0B\u8FBE\u6307\u4EE4\uFF08\u2026\u2026\u5C31\u50CF\u6218\u65F6\u6307\u6325\u5B98\u4E00\u6837\uFF09\uFF0C\u8BB0\u5F55\u5979\u4EEC\u7684\u884C\u52A8\u548C\u80FD\u529B\u7B49\u7B49\u3002\r\n\u6700\u7EC8\uFF0C\u628A\u8FD9\u4E9B\u8BB0\u5F55\u7EFC\u5408\u6C47\u96C6\u5728\u4E00\u5F20\u9488\u5BF9\u5076\u50CF\u4E2A\u4EBA\u7684\u8868\u5355\u4E0A\u2026\u2026\u5C31\u8FD9\u6837\u65E5\u590D\u4E00\u65E5\u5730\u201C\u590D\u6F14\u201D\u5979\u4EEC\u5728\u4E0D\u540C\u201C\u6218\u573A\u201D\u4E0A\u7684\u884C\u52A8\uFF0C\u6700\u7EC8\u5F52\u6574\u6863\u6848\uFF0C\u64B0\u5199\u201C\u5076\u50CF\u201D\u62A5\u544A\u4E0E\u5979\u4EEC\u7684\u6545\u4E8B\u2026\u2026\r\n"
@@ -14,30 +14,18 @@ MonoBehaviour:
m_EditorClassIdentifier:
fatherType: 1
isUnlocked: 1
class_id: 501001
class_name: "\u4F60\u597D"
class_id: 501003
class_name: "Bansonic\u516C\u53F8"
class_image: {fileID: 0}
itemRarity: 3
usageTag: 0
class_description: "\u6211\u4FDD\u6301\u7740\u6124\u6012\u4F46\u4F60\u770B\u4E0D\u51FA\u6765\n\u56E0\u4E3A\u6211\u6709\u5FAE\u7B11\u5507"
sonList:
- son_isUnlocked: 1
son_id: 0
son_name: 1238971
son_name: "Bansonic\u516C\u53F8 #1"
son_image: {fileID: 0}
son_description: 124151
son_title:
son_passage:
- son_isUnlocked: 1
son_id: 0
son_name: "\u6BD4\u6BD4\u62C9\u5E03"
son_image: {fileID: 0}
son_description: 112312312
son_title:
son_passage:
- son_isUnlocked: 0
son_id: 0
son_name: "\u6BD4\u6BD4\u62C9\u5E03"
son_image: {fileID: 0}
son_description: 112312312
son_title:
son_passage:
son_detailsImage: {fileID: 21300000, guid: ea48dcb32602ae34d80a24fcae4260ec, type: 3}
son_description: "Bansonic\u516C\u53F8\u540C\u6211\u7B14\u4E0B\u7684\u201C\u7ECA\u594F\u201D\u5C0F\u961F\u5E76\u65E0\u5173\u7CFB\u3002\u524D\u8005\u662F\u5C06\u6211\u6D3E\u9063\u81F3\u6B64\u5730\u7684\u6BCD\u516C\u53F8\uFF0C\u800C\u540E\u8005\u5219\u662F......"
son_title: "Bansonic\u516C\u53F8 #1"
son_passage: "Bansonic\u516C\u53F8\u540C\u6211\u7B14\u4E0B\u7684\u201C\u7ECA\u594F\u201D\u5C0F\u961F\u5E76\u65E0\u5173\u7CFB\u3002\u524D\u8005\u662F\u5C06\u6211\u6D3E\u9063\u81F3\u6B64\u5730\u7684\u6BCD\u516C\u53F8\uFF0C\u800C\u540E\u8005\u5219\u662F\u4E00\u4E2A\u5728\u5F53\u5E74\u5076\u50CF\u7ADE\u6280\u884C\u4E1A\u4E0B\u8BDE\u751F\u7684\u6BD4\u8D5B\u961F\u4F0D\u3002\u81F3\u4E8E\u201C\u7ECA\u594F\u201D\u5C0F\u961F\u8FD9\u4E00\u540D\u79F0\uFF0C\u4E5F\u662F\u6211\u601D\u6765\u60F3\u53BB\uFF0C\u6700\u7EC8\u51B3\u5B9A\u4EE5\u516C\u53F8\u540D\u5B57\u7684\u8C10\u97F3\u6539\u6765\u7684\uFF0C\u56E0\u4E3A\u8FD9\u4E00\u961F\u4F0D\u539F\u672C\u7684\u540D\u79F0\u65E9\u5C31\u65E0\u4ECE\u8003\u8BC1\u4E86\u3002\u800C\u4E14\uFF0C\u516C\u53F8\u7ADF\u7136\u79C1\u4E0B\u6709\u4E3B\u6301\u5173\u4E8E\u5076\u50CF\u7ADE\u6280\u7684\u5DE5\u4F5C\u2026\u2026\u8FD9\u4EE4\u6211\u6709\u4E9B\u60CA\u8BB6\uFF0C\uFF08\u65E2\u7136\u5982\u6B64\uFF09\u7D22\u6027\u6211\u5C31\u8FD9\u4E48\u63A5\u4E0B\u8C03\u4EE4\u6765\u8FD9\u91CC\u4E86\u3002\r\n\r\nBansonic\u516C\u53F8\u4E3B\u8981\u7ECF\u8425\u7535\u5B50\u6E38\u620F\u8BBE\u8BA1\u4E0E\u5F00\u53D1\u3001\u7F8E\u672F\u7B49\u884C\u4E1A\u7684\u5916\u5305\u670D\u52A1\u3002\u7B97\u4E0D\u4E0A\u5927\u516C\u53F8\uFF0C\u804C\u5458\u4E0D\u591A\uFF0C\u4F46\u4ECD\u80FD\u7EF4\u6301\u6B63\u5E38\u7684\u8FD0\u8F6C\u3002\u8FD1\u51E0\u5E74\uFF0C\u516C\u53F8\u8C8C\u4F3C\u662F\u60F3\u5F00\u8F9F\u65B0\u65B9\u5411\uFF0C\u4ED6\u4EEC\u5728\u672C\u5730\u5EFA\u7ACB\u8D77\u4E86\u4E00\u4E2A\u7EA6\u6709\u4E00\u5EA7\u5C0F\u578B\u56FE\u4E66\u9986\u90A3\u4E48\u5927\u7684\u201C\u5206\u90E8\u201D\u2026\u2026\u8FD9\u4FBF\u662F\u6863\u6848\u9986\uFF0C\u6211\u76EE\u524D\u6240\u5728\u7684\u5730\u65B9\u3002\r\n\r\n\u6211\u5BF9\u516C\u53F8\u7684\u4E86\u89E3\u4E0D\u591A\uFF0C\u800C\u4E00\u4E9B\u5DE5\u4F5C\u4E0A\u5E94\u9075\u5B88\u4FDD\u5BC6\u7684\u6587\u4EF6\uFF0C\u6211\u4E5F\u4E0D\u4F1A\u5728\u6545\u4E8B\u4E2D\u63D0\u53CA\uFF0C\u5B9E\u9645\u4E0A\u4E5F\u4E0D\u9700\u8981\u63D0\u53CA\u3002\r\n"
@@ -0,0 +1,31 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &11400000
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: cbba4ac8eb94d774997fedbd2b2dd161, type: 3}
m_Name: 501004
m_EditorClassIdentifier:
fatherType: 1
isUnlocked: 1
class_id: 501003
class_name: "Filelink\u5076\u50CF\u6863\u6848\u9986"
class_image: {fileID: 0}
itemRarity: 3
usageTag: 0
class_description: "\u6211\u4FDD\u6301\u7740\u6124\u6012\u4F46\u4F60\u770B\u4E0D\u51FA\u6765\n\u56E0\u4E3A\u6211\u6709\u5FAE\u7B11\u5507"
sonList:
- son_isUnlocked: 1
son_id: 0
son_name: "Filelink\u5076\u50CF\u6863\u6848\u9986 #1"
son_image: {fileID: 0}
son_detailsImage: {fileID: 21300000, guid: ea48dcb32602ae34d80a24fcae4260ec, type: 3}
son_description: "\u6863\u6848\u9986\u5750\u843D\u4E8E\u8FD9\u5EA7\u57CE\u5E02\u7684\u4E00\u4E2A\u76F8\u5F53\u4E0D\u8D77\u773C\u7684\u4F4D\u7F6E\u3002\u6211\u751A\u81F3\u90FD\u4E0D\u77E5\u9053\u516C\u53F8\u662F\u600E\u4E48\u60F3\u7684\uFF0C\u65E2\u7136\u60F3\u5356\u4E66\u2026\u2026"
son_title: "Filelink\u5076\u50CF\u6863\u6848\u9986 #1"
son_passage: "\u6863\u6848\u9986\u5750\u843D\u4E8E\u8FD9\u5EA7\u57CE\u5E02\u7684\u4E00\u4E2A\u76F8\u5F53\u4E0D\u8D77\u773C\u7684\u4F4D\u7F6E\u3002\u6211\u751A\u81F3\u90FD\u4E0D\u77E5\u9053\u516C\u53F8\u662F\u600E\u4E48\u60F3\u7684\uFF0C\u65E2\u7136\u60F3\u5356\u4E66\uFF0C\u4E3A\u4EC0\u4E48\u8981\u5EFA\u5728\u8FD9\u79CD\u5730\u65B9\u2026\u2026\u662F\u60F3\u9760\u4E00\u4E9B\u76F8\u5BF9\u201C\u79D1\u6280\u201D\u7684\u624B\u6BB5\u8425\u9500\u5417\uFF1F\u800C\u4E14\u8FD9\u79BB\u6211\u5BB6\u7684\u8DDD\u79BB\u5B9E\u5728\u592A\u8FDC\u2026\u2026\u65E0\u53EF\u5948\u4F55\u4E4B\u4E0B\uFF0C\u6211\u7D22\u6027\u53EA\u80FD\u6BCF\u5929\u4F4F\u5728\u8FD9\u4E2A\u5730\u65B9\u4E86\u3002\r\n\r\n\r\n\u5F53\u6211\u521D\u6B21\u770B\u5230\u6863\u6848\u9986\u7684\u65F6\u5019\uFF0C\u8FD8\u6709\u70B9\u60F3\u8981\u5492\u9A82\u516C\u53F8\u2014\u2014\u4E0D\u4EC5\u4EC5\u662F\u5C06\u6211\u6253\u53D1\u5230\u8FD9\u79CD\u5730\u65B9\uFF0C\u800C\u4E14\u8FD9\u7A77\u9178\u7684\u5C4B\u5B50\uFF0C\u771F\u662F\u4EE4\u6211\u4E0D\u6562\u76F8\u4FE1\u8FD9\u662F\u4E00\u5BB6\u516C\u53F8\u7684\u5206\u90E8\u3002\u4E0D\u8FC7\uFF0C\u6211\u5728\u4E00\u53EA\u811A\u8E0F\u8FDB\u95E8\u69DB\u540E\uFF0C\u611F\u5230\u4E86\u4E00\u4E9B\u6076\u5FC3\uFF0C\u5C31\u50CF\u662F\u6765\u65F6\u7ECF\u5386\u5750\u957F\u9014\u6C7D\u8F66\u7684\u90A3\u79CD\u53CD\u80C3\u611F\u4E00\u6837\u3002\u53EF\u5F53\u6211\u62AC\u8D77\u5934\u65F6\uFF0C\u72B9\u5982\u4E00\u5EA7\u5B8F\u4F1F\u7684\u3001\u6446\u653E\u4E86\u591A\u4E2A\u5C55\u67DC\u7684\u5385\u5802\u8D6B\u7136\u6620\u5165\u773C\u5E18\uFF01\u8FD9\u4EE4\u6211\u96BE\u4EE5\u7F6E\u4FE1\uFF0C\u4EE5\u81F3\u4E8E\u6211\u7ACB\u523B\u9000\u6B65\u8E0F\u51FA\u95E8\u5916\uFF0C\u60F3\u8981\u786E\u8BA4\u6211\u53EA\u662F\u672A\u80FD\u7F13\u89E3\u957F\u9014\u6C7D\u8F66\u90A3\u4F1A\u7684\u53CD\u80C3\u800C\u5DF2\u3002\u53EF\u5728\u6211\u9000\u6B65\u4E4B\u540E\uFF0C\u773C\u524D\u7684\u573A\u666F\u53C8\u53D8\u56DE\u4E86\u5E73\u623F\u6B63\u5E38\u7684\u6A21\u6837\u2026\u2026\u8FD9\u662F\u6211\u6765\u5230\u6B64\u5904\u9047\u5230\u7684\u7B2C\u4E00\u4EF6\u5947\u4E8B\u3002\r\n\r\n\u81F3\u6B64\uFF0C\u5173\u4E8E\u8FD9\u5EA7\u6863\u6848\u9986\u7684\u5176\u4ED6\u6D88\u606F\uFF0C\u6211\u4FBF\u4E0D\u77E5\u4E86\u3002\u4E5F\u8BB8\u5B83\u7EC8\u6709\u4E00\u65E5\uFF0C\u4F1A\u5411\u6211\u4EEC\u63ED\u793A\u5B83\u7684\u5168\u90E8\uFF1B\u4E5F\u8BB8\u5230\u90A3\u65F6\uFF0C\u6211\u4E5F\u4E0D\u4F1A\u518D\u5BF9\u8FD9\u79CD\u53CD\u5E38\u73B0\u8C61\u611F\u5230\u9707\u60CA\uFF0C\u751A\u81F3\u662F\u6050\u60E7\u4E86\u3002\r\n"
@@ -1,7 +1,8 @@
fileFormatVersion: 2
guid: 340ab549ed47eb14b917ac3ad726a50e
DefaultImporter:
guid: f4bedb8a28c50e049936028f4ead04e5
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:
@@ -1,43 +0,0 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &11400000
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: cbba4ac8eb94d774997fedbd2b2dd161, type: 3}
m_Name: 501001
m_EditorClassIdentifier:
fatherType: 2
isUnlocked: 1
class_id: 501001
class_name: 12
class_image: {fileID: 0}
itemRarity: 5
class_description: "\u6211\u4FDD\u6301\u7740\u6124\u6012\u4F46\u4F60\u770B\u4E0D\u51FA\u6765\n\u56E0\u4E3A\u6211\u6709\u5FAE\u7B11\u5507"
sonList:
- son_isUnlocked: 1
son_id: 0
son_name: 1238971
son_image: {fileID: 0}
son_description: 124151
son_title:
son_passage:
- son_isUnlocked: 1
son_id: 0
son_name: "\u6BD4\u6BD4\u62C9\u5E03"
son_image: {fileID: 0}
son_description: 112312312
son_title:
son_passage:
- son_isUnlocked: 0
son_id: 0
son_name: "\u6BD4\u6BD4\u62C9\u5E03"
son_image: {fileID: 0}
son_description: 112312312
son_title:
son_passage:
@@ -0,0 +1,31 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &11400000
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: cbba4ac8eb94d774997fedbd2b2dd161, type: 3}
m_Name: 502001
m_EditorClassIdentifier:
fatherType: 2
isUnlocked: 1
class_id: 502001
class_name: "\u524D\u8A00"
class_image: {fileID: 0}
itemRarity: 5
usageTag: 0
class_description: "\u540D\u4EE5\u201C\u95EA\u8000\u7684\u5979\u4EEC\u201D"
sonList:
- son_isUnlocked: 1
son_id: 0
son_name: "\u524D\u8A00 #1"
son_image: {fileID: 0}
son_detailsImage: {fileID: 21300000, guid: ea48dcb32602ae34d80a24fcae4260ec, type: 3}
son_description: "\u6211\u4EB2\u773C\u6240\u89C1\uFF0C\u90A3\u4E9B\u8863\u7740\u4E0E\u4E3E\u6B62\u90FD\u4E0D\u50CF\u6211\u4EEC\u73B0\u4EE3\u4EBA\u7684\u4EBA\uFF0C\u6B63\u6D3B\u751F\u751F\u5730\u7AD9\u5728\u6211\u7684\u773C\u524D\u2026\u2026\r\n\r"
son_title: "\u524D\u8A00 #1"
son_passage: "\u6211\u4EB2\u773C\u6240\u89C1\uFF0C\u90A3\u4E9B\u8863\u7740\u4E0E\u4E3E\u6B62\u90FD\u4E0D\u50CF\u6211\u4EEC\u73B0\u4EE3\u4EBA\u7684\u4EBA\uFF0C\u6B63\u6D3B\u751F\u751F\u5730\u7AD9\u5728\u6211\u7684\u773C\u524D\u2026\u2026\r\n\r\n\u636ESonia\u6240\u8BF4\uFF0C\u516C\u53F8\u5EFA\u7ACB\u8D77\u7684\u6863\u6848\u9986\uFF0C\u4E5F\u5C5E\u4E8E\u662F\u516C\u53F8\u715E\u8D39\u82E6\u5FC3\u3001\u8BF8\u591A\u4EBA\u5458\u57CB\u5934\u7814\u7A76\u591A\u5E74\u7684\u6210\u679C\u3002\u5728\u5B83\u7684\u5185\u90E8\uFF0C\u5728\u90A3\u95F4\u50CF\u662F\u6392\u7403\u573A\u90A3\u4E48\u5927\u7684\u623F\u95F4\u4E2D\uFF0C\u6211\u770B\u5230\u2014\u2014\u4E5F\u7EDD\u5BF9\u662F\u6211\u4EB2\u773C\u6240\u89C1\uFF0C\u5B83\u5177\u5907\u5C06\u8FC7\u5F80\u6B7B\u53BB\u5DF2\u4E45\u7684\u4EBA\u91CD\u65B0\u62C9\u8D77\u7684\u80FD\u529B\u3002\u53EF\u8FD9\u4E0D\u4EE3\u8868\u6B7B\u800C\u590D\u751F\uFF0C\u8FD9\u4EC5\u4EC5\u53EA\u80FD\u505A\u5230\u8BA9\u6211\u4EEC\u201C\u770B\u5230\u201D\u4ED6\u4EEC\u3002\u9664\u4E86\u5728\u590D\u6F14\u5DE5\u4F5C\u4E2D\uFF0C\u4ED6\u4EEC\u4F1A\u65E0\u6761\u4EF6\u5730\u542C\u4ECE\u6211\u7684\u6218\u672F\u53E3\u4EE4\u4EE5\u5916\uFF0C\u5176\u4F59\u60C5\u51B5\u4E0B\u4ED6\u4EEC\u90FD\u65E0\u6CD5\u611F\u77E5\u6211\u4EEC\u7684\u5B58\u5728\u2026\u2026\u53EF\u8FD9\u4ECD\u5B8C\u5168\u53EF\u4EE5\u88AB\u79F0\u4F5C\u662F\u5F53\u4ECA\u57CE\u5E02\u4E2D\uFF0C\u6211\u6240\u80FD\u770B\u5230\u7684\u6700\u4F1F\u5927\u7684\u79D1\u5B66\u6280\u672F\u3002\u770B\u6765\u5728\u516C\u53F8\u4E2D\uFF0C\u6211\u6240\u4E0D\u77E5\u7684\u673A\u5BC6\u751A\u591A\u3002\r\n"
@@ -10,7 +10,7 @@ MonoBehaviour:
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: cbba4ac8eb94d774997fedbd2b2dd161, type: 3}
m_Name: 501003
m_Name: 502002
m_EditorClassIdentifier:
fatherType: 2
isUnlocked: 1
@@ -18,12 +18,14 @@ MonoBehaviour:
class_name: "\u5B54\u5609\u5F6C"
class_image: {fileID: 0}
itemRarity: 5
usageTag: 0
class_description: "\u6211\u4FDD\u6301\u7740\u6124\u6012\u4F46\u4F60\u770B\u4E0D\u51FA\u6765\n\u56E0\u4E3A\u6211\u6709\u5FAE\u7B11\u5507"
sonList:
- son_isUnlocked: 1
son_id: 0
son_name: 1238971
son_image: {fileID: 0}
son_detailsImage: {fileID: 21300000, guid: ea48dcb32602ae34d80a24fcae4260ec, type: 3}
son_description: 124151
son_title:
son_passage:
@@ -31,6 +33,7 @@ MonoBehaviour:
son_id: 0
son_name: "\u6BD4\u6BD4\u62C9\u5E03"
son_image: {fileID: 0}
son_detailsImage: {fileID: 0}
son_description: 112312312
son_title:
son_passage:
@@ -38,6 +41,7 @@ MonoBehaviour:
son_id: 0
son_name: "\u6BD4\u6BD4\u62C9\u5E03"
son_image: {fileID: 0}
son_detailsImage: {fileID: 0}
son_description: 112312312
son_title:
son_passage:
@@ -10,7 +10,7 @@ MonoBehaviour:
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: cbba4ac8eb94d774997fedbd2b2dd161, type: 3}
m_Name: 501002
m_Name: 502003
m_EditorClassIdentifier:
fatherType: 2
isUnlocked: 1
@@ -18,12 +18,14 @@ MonoBehaviour:
class_name: "\u5B54"
class_image: {fileID: 0}
itemRarity: 5
usageTag: 0
class_description: "\u6211\u4FDD\u6301\u7740\u6124\u6012\u4F46\u4F60\u770B\u4E0D\u51FA\u6765\n\u56E0\u4E3A\u6211\u6709\u5FAE\u7B11\u5507"
sonList:
- son_isUnlocked: 1
son_id: 0
son_name: 1238971
son_image: {fileID: 0}
son_detailsImage: {fileID: 21300000, guid: ea48dcb32602ae34d80a24fcae4260ec, type: 3}
son_description: 124151
son_title:
son_passage:
@@ -31,6 +33,7 @@ MonoBehaviour:
son_id: 0
son_name: "\u6BD4\u6BD4\u62C9\u5E03"
son_image: {fileID: 0}
son_detailsImage: {fileID: 0}
son_description: 112312312
son_title:
son_passage:
@@ -38,6 +41,7 @@ MonoBehaviour:
son_id: 0
son_name: "\u6BD4\u6BD4\u62C9\u5E03"
son_image: {fileID: 0}
son_detailsImage: {fileID: 0}
son_description: 112312312
son_title:
son_passage:
@@ -24,7 +24,7 @@ MonoBehaviour:
isOnShelf: 1
canbepurchased: 1
isHot: 1
user_has_read: 0
user_has_read: 1
itemType: 0
associatedAllyHero: {fileID: 11400000, guid: 593c39b83808fb742851fb93eaa05963, type: 2}
associatedSong: {fileID: 0}
@@ -40,4 +40,4 @@ MonoBehaviour:
- currencyType: 0
amount: 4000
unlockRequirements: []
purchasedCount: 0
purchasedCount: 1
@@ -22,7 +22,7 @@ MonoBehaviour:
itemDetailedDescription: "\u82B1\u8D3940\u8BB0\u5FC6\u788E\u7247\uFF0C\u83B7\u5F97\u4E00\u4EF6\u968F\u673A\u7C7B\u578B\u3001\u968F\u673A\u54C1\u8D28\u3001\u6280\u80FD\u968F\u673A\u5668\u914D\u7F6E\u51B3\u5B9A\u7684\u8BB0\u5FC6\u3002\u4E00\u6B21\u53EA\u80FD\u8D2D\u4E70\u4E00\u4E2A\u3002"
itemUsageTag: 0
isOnShelf: 1
canbepurchased: 1
canbepurchased: 0
isHot: 0
user_has_read: 1
itemType: 3
@@ -22,7 +22,7 @@ MonoBehaviour:
itemDetailedDescription: "\u82B1\u8D3960\u8BB0\u5FC6\u788E\u7247\uFF0C\u81EA\u9009\u4E00\u7C7B\u88C5\u5907\u7C7B\u578B\uFF0C\u83B7\u5F97\u4E00\u4EF6\u968F\u673A\u54C1\u8D28\u3001\u6280\u80FD\u968F\u673A\u5668\u914D\u7F6E\u51B3\u5B9A\u7684\u8BB0\u5FC6\u3002\u4E00\u6B21\u53EA\u80FD\u8D2D\u4E70\u4E00\u4E2A\u3002"
itemUsageTag: 0
isOnShelf: 1
canbepurchased: 1
canbepurchased: 0
isHot: 0
user_has_read: 1
itemType: 3
@@ -22,7 +22,7 @@ MonoBehaviour:
itemDetailedDescription: "\u82B1\u8D39200\u8BB0\u5FC6\u788E\u7247\uFF0C\u81EA\u9009\u4E00\u7C7B\u88C5\u5907\u7C7B\u578B\uFF0C\u83B7\u5F97\u4E00\u4EF6\u9AD8\u5929\u8D4B\u8BB0\u5FC6\u3002\u5C5E\u6027\u6570\u503C\u4F1A\u66F4\u504F\u5411\u9AD8\u503C\u6BB5\u3002\u4E00\u6B21\u53EA\u80FD\u8D2D\u4E70\u4E00\u4E2A\u3002"
itemUsageTag: 0
isOnShelf: 1
canbepurchased: 1
canbepurchased: 0
isHot: 0
user_has_read: 1
itemType: 3
@@ -22,7 +22,7 @@ MonoBehaviour:
itemDetailedDescription: "\u82B1\u8D39500\u8BB0\u5FC6\u788E\u7247\uFF0C\u81EA\u9009\u4E00\u7C7B\u88C5\u5907\u7C7B\u578B\uFF0C\u83B7\u5F97\u4E00\u4EF6\u5FC5\u5B9A\u643A\u5E26\u8BE5\u7C7B\u578B\u6280\u80FD\u6C60\u5185\u968F\u673A\u6280\u80FD\u7684\u8BB0\u5FC6\u3002\u4E00\u6B21\u53EA\u80FD\u8D2D\u4E70\u4E00\u4E2A\u3002"
itemUsageTag: 0
isOnShelf: 1
canbepurchased: 1
canbepurchased: 0
isHot: 0
user_has_read: 1
itemType: 3
@@ -22,7 +22,7 @@ MonoBehaviour:
itemDetailedDescription: "\u82B1\u8D391000\u8BB0\u5FC6\u788E\u7247\uFF0C\u81EA\u9009\u4E00\u7C7B\u88C5\u5907\u7C7B\u578B\u4E0E\u4E00\u4E2A\u6280\u80FD\uFF0C\u83B7\u5F97\u4E00\u4EF6\u5FC5\u5B9A\u643A\u5E26\u8BE5\u6280\u80FD\u7684\u8BB0\u5FC6\u3002\u4E00\u6B21\u53EA\u80FD\u8D2D\u4E70\u4E00\u4E2A\u3002"
itemUsageTag: 0
isOnShelf: 1
canbepurchased: 1
canbepurchased: 0
isHot: 1
user_has_read: 1
itemType: 3
@@ -22,7 +22,7 @@ MonoBehaviour:
itemDetailedDescription: "\u82B1\u8D391500\u8BB0\u5FC6\u788E\u7247\uFF0C\u81EA\u9009\u4E00\u7C7B\u88C5\u5907\u7C7B\u578B\u4E0E\u4E00\u4E2A\u6280\u80FD\uFF0C\u83B7\u5F97\u4E00\u4EF6\u9AD8\u5929\u8D4B\u4E14\u5FC5\u5B9A\u643A\u5E26\u8BE5\u6280\u80FD\u7684\u8BB0\u5FC6\u3002\u4E00\u6B21\u53EA\u80FD\u8D2D\u4E70\u4E00\u4E2A\u3002"
itemUsageTag: 0
isOnShelf: 1
canbepurchased: 1
canbepurchased: 0
isHot: 1
user_has_read: 1
itemType: 3
@@ -12,7 +12,7 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: 02ad5b531cc1df24dacd3a175979618d, type: 3}
m_Name: 1002001_emilia
m_EditorClassIdentifier:
usernameID: user_TestUser@FloatGaming
usernameID:
songName: Beginning of Bansonic
songID: 1002001
isUnlocked: 1
@@ -23,8 +23,8 @@ MonoBehaviour:
belongsTo_whichDLC: "\u6559\u5B66"
bpm: 128
songDuration: 246
game_enterTimes: 1
time_totalPlayingTime: 8.544141
game_enterTimes: 0
time_totalPlayingTime: 0
illustration: {fileID: 21300000, guid: 315b4779a77139d4cb401fc417e07f13, type: 3}
backgroudPIC: {fileID: 21300000, guid: f59a873f9ed8db141bdbb5b134e48d11, type: 3}
fullscreen_songPicture: {fileID: 21300000, guid: 34499d10848dc9c419a2ba579f3d210f, type: 3}
@@ -12,7 +12,7 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: 02ad5b531cc1df24dacd3a175979618d, type: 3}
m_Name: 1002002_arcstar
m_EditorClassIdentifier:
usernameID: user_TestUser@FloatGaming
usernameID:
songName: A Lake With Endless Stars
songID: 1002002
isUnlocked: 1
@@ -23,8 +23,8 @@ MonoBehaviour:
belongsTo_whichDLC: "\u4E13\u5458\u8BC4\u4F30\u8BA1\u5212#01"
bpm: 220
songDuration: 0
game_enterTimes: 9
time_totalPlayingTime: 642.14526
game_enterTimes: 0
time_totalPlayingTime: 0
illustration: {fileID: 21300000, guid: 5db0a6d9722de1745810ed479bda28ff, type: 3}
backgroudPIC: {fileID: 21300000, guid: e3f3159851217b84d91c8ae5d1c7a5cd, type: 3}
fullscreen_songPicture: {fileID: 21300000, guid: ff00d514e93546640a9bfc0ad90cd1c3, type: 3}
@@ -52,11 +52,11 @@ MonoBehaviour:
difficultyName:
chartFile: {fileID: 4900000, guid: d5dfea41588d98549b8b31c810eb6c35, type: 3}
difficultyDescription:
lastScoreForThisDifficulty: 325376
chartPersonalRecordForThisDifficulty: 418252
idolPersonalRecordForThisDifficulty: 14592
totalPersonalRecordForThisDifficulty: 432844
levelProgressForThisDifficulty: 0.3206252
lastScoreForThisDifficulty: 0
chartPersonalRecordForThisDifficulty: 0
idolPersonalRecordForThisDifficulty: 0
totalPersonalRecordForThisDifficulty: 0
levelProgressForThisDifficulty: 0
experienceProvidedForThisDifficulty: 0
- difficulty: 1
difficultyLEVEL: 10
@@ -75,11 +75,11 @@ MonoBehaviour:
difficultyName:
chartFile: {fileID: 4900000, guid: b9699c3ce25cc9d4fa38074adcaadac6, type: 3}
difficultyDescription:
lastScoreForThisDifficulty: 904208
chartPersonalRecordForThisDifficulty: 879457
idolPersonalRecordForThisDifficulty: 24751
totalPersonalRecordForThisDifficulty: 904208
levelProgressForThisDifficulty: 0.6697837
lastScoreForThisDifficulty: 0
chartPersonalRecordForThisDifficulty: 0
idolPersonalRecordForThisDifficulty: 0
totalPersonalRecordForThisDifficulty: 0
levelProgressForThisDifficulty: 0
experienceProvidedForThisDifficulty: 0
- difficulty: 2
difficultyLEVEL: 18
@@ -98,11 +98,11 @@ MonoBehaviour:
difficultyName:
chartFile: {fileID: 4900000, guid: 1333012d19842c24c945e004b06c3be8, type: 3}
difficultyDescription:
lastScoreForThisDifficulty: 484578
chartPersonalRecordForThisDifficulty: 481788
idolPersonalRecordForThisDifficulty: 2790
totalPersonalRecordForThisDifficulty: 484578
levelProgressForThisDifficulty: 0.35894668
lastScoreForThisDifficulty: 0
chartPersonalRecordForThisDifficulty: 0
idolPersonalRecordForThisDifficulty: 0
totalPersonalRecordForThisDifficulty: 0
levelProgressForThisDifficulty: 0
experienceProvidedForThisDifficulty: 0
personalRecord: 904208
current_levelProgress: 0.6697837
@@ -12,7 +12,7 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: 02ad5b531cc1df24dacd3a175979618d, type: 3}
m_Name: 1002003_spectrum
m_EditorClassIdentifier:
usernameID: user_TestUser@FloatGaming
usernameID:
songName: CFD
songID: 1002003
isUnlocked: 1
@@ -23,8 +23,8 @@ MonoBehaviour:
belongsTo_whichDLC: "\u4E13\u5458\u8BC4\u4F30\u8BA1\u5212#01"
bpm: 176
songDuration: 0
game_enterTimes: 10
time_totalPlayingTime: 545.56323
game_enterTimes: 0
time_totalPlayingTime: 0
illustration: {fileID: 21300000, guid: c956ed47882564d4db701843c90f7257, type: 3}
backgroudPIC: {fileID: 21300000, guid: cc93a213553b7c84a8a619120651a148, type: 3}
fullscreen_songPicture: {fileID: 21300000, guid: 8178f790e6057e145a77733695e429ed, type: 3}
@@ -52,11 +52,11 @@ MonoBehaviour:
difficultyName:
chartFile: {fileID: 4900000, guid: 2a13ae527ec516445b9b031c14fdece2, type: 3}
difficultyDescription:
lastScoreForThisDifficulty: 213383
chartPersonalRecordForThisDifficulty: 204648
idolPersonalRecordForThisDifficulty: 8735
totalPersonalRecordForThisDifficulty: 213383
levelProgressForThisDifficulty: 0.15806147
lastScoreForThisDifficulty: 0
chartPersonalRecordForThisDifficulty: 0
idolPersonalRecordForThisDifficulty: 0
totalPersonalRecordForThisDifficulty: 0
levelProgressForThisDifficulty: 0
experienceProvidedForThisDifficulty: 0
- difficulty: 1
difficultyLEVEL: 7
@@ -76,10 +76,10 @@ MonoBehaviour:
chartFile: {fileID: 4900000, guid: 1f516994ae72f194a8ba0fadcd5e3308, type: 3}
difficultyDescription:
lastScoreForThisDifficulty: 0
chartPersonalRecordForThisDifficulty: 828438
idolPersonalRecordForThisDifficulty: 19059
totalPersonalRecordForThisDifficulty: 847497
levelProgressForThisDifficulty: 0.62777555
chartPersonalRecordForThisDifficulty: 0
idolPersonalRecordForThisDifficulty: 0
totalPersonalRecordForThisDifficulty: 0
levelProgressForThisDifficulty: 0
experienceProvidedForThisDifficulty: 0
- difficulty: 2
difficultyLEVEL: 10
@@ -12,7 +12,7 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: 02ad5b531cc1df24dacd3a175979618d, type: 3}
m_Name: 1002004_smile
m_EditorClassIdentifier:
usernameID: user_TestUser@FloatGaming
usernameID:
songName: "\u30A2\u30C8\u30ED\u30DD\u30B9\u3068\u6700\u679C\u306E\u63A2\u6C42\u8005"
songID: 1002004
isUnlocked: 1
@@ -23,8 +23,8 @@ MonoBehaviour:
belongsTo_whichDLC: "\u4E13\u5458\u8BC4\u4F30\u8BA1\u5212#01"
bpm: 230
songDuration: 160
game_enterTimes: 15
time_totalPlayingTime: 615.5299
game_enterTimes: 0
time_totalPlayingTime: 0
illustration: {fileID: 21300000, guid: 174304486fc1a834781f1eb0e54255df, type: 3}
backgroudPIC: {fileID: 21300000, guid: e0b3e2f5f5e5c0043900e3fbd8dd28a2, type: 3}
fullscreen_songPicture: {fileID: 21300000, guid: 5a1b664fd293ec943a5b8cffee700da1, type: 3}
@@ -52,11 +52,11 @@ MonoBehaviour:
difficultyName:
chartFile: {fileID: 4900000, guid: ca9bfdf5df2b55f4284f79ad8e5f41af, type: 3}
difficultyDescription:
lastScoreForThisDifficulty: 976475
chartPersonalRecordForThisDifficulty: 937664
idolPersonalRecordForThisDifficulty: 41291
totalPersonalRecordForThisDifficulty: 978955
levelProgressForThisDifficulty: 0.72515184
lastScoreForThisDifficulty: 0
chartPersonalRecordForThisDifficulty: 0
idolPersonalRecordForThisDifficulty: 0
totalPersonalRecordForThisDifficulty: 0
levelProgressForThisDifficulty: 0
experienceProvidedForThisDifficulty: 0
- difficulty: 1
difficultyLEVEL: 6
@@ -75,11 +75,11 @@ MonoBehaviour:
difficultyName:
chartFile: {fileID: 4900000, guid: ba8d28291a1bf2c4fbfbc72a48c71402, type: 3}
difficultyDescription:
lastScoreForThisDifficulty: 41800
chartPersonalRecordForThisDifficulty: 420420
idolPersonalRecordForThisDifficulty: 11707
totalPersonalRecordForThisDifficulty: 432127
levelProgressForThisDifficulty: 0.32009408
lastScoreForThisDifficulty: 0
chartPersonalRecordForThisDifficulty: 0
idolPersonalRecordForThisDifficulty: 0
totalPersonalRecordForThisDifficulty: 0
levelProgressForThisDifficulty: 0
experienceProvidedForThisDifficulty: 0
- difficulty: 2
difficultyLEVEL: 11
@@ -98,11 +98,11 @@ MonoBehaviour:
difficultyName:
chartFile: {fileID: 4900000, guid: dc27d9d67f3698646b7b7c3d926eea3c, type: 3}
difficultyDescription:
lastScoreForThisDifficulty: 42
lastScoreForThisDifficulty: 0
chartPersonalRecordForThisDifficulty: 0
idolPersonalRecordForThisDifficulty: 42
totalPersonalRecordForThisDifficulty: 42
levelProgressForThisDifficulty: 0.00003111111
idolPersonalRecordForThisDifficulty: 0
totalPersonalRecordForThisDifficulty: 0
levelProgressForThisDifficulty: 0
experienceProvidedForThisDifficulty: 0
personalRecord: 978955
current_levelProgress: 0.72515184
@@ -23,8 +23,8 @@ MonoBehaviour:
belongsTo_whichDLC: "\u4E13\u5458\u8BC4\u4F30\u8BA1\u5212#01"
bpm: 156
songDuration: 0
game_enterTimes: 2
time_totalPlayingTime: 147.4202
game_enterTimes: 0
time_totalPlayingTime: 0
illustration: {fileID: 21300000, guid: c144b570648f59e4d8f7a822ff0d0904, type: 3}
backgroudPIC: {fileID: 21300000, guid: 70a2668d0a05007409391395d5af5bd3, type: 3}
fullscreen_songPicture: {fileID: 21300000, guid: a09b5aa0158191248a0451bb657fd9a3, type: 3}
@@ -52,11 +52,11 @@ MonoBehaviour:
difficultyName:
chartFile: {fileID: 4900000, guid: b5753321365e3c044937961c41edc449, type: 3}
difficultyDescription:
lastScoreForThisDifficulty: 1015660
chartPersonalRecordForThisDifficulty: 975150
idolPersonalRecordForThisDifficulty: 40510
totalPersonalRecordForThisDifficulty: 1015660
levelProgressForThisDifficulty: 0.75234073
lastScoreForThisDifficulty: 0
chartPersonalRecordForThisDifficulty: 0
idolPersonalRecordForThisDifficulty: 0
totalPersonalRecordForThisDifficulty: 0
levelProgressForThisDifficulty: 0
experienceProvidedForThisDifficulty: 0
- difficulty: 1
difficultyLEVEL: 11
@@ -12,7 +12,7 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: 02ad5b531cc1df24dacd3a175979618d, type: 3}
m_Name: 1002006
m_EditorClassIdentifier:
usernameID: user_TestUser@FloatGaming
usernameID:
songName: Paraphiloplace
songID: 1002006
isUnlocked: 1
+5 -5
View File
@@ -1516,7 +1516,7 @@ RectTransform:
m_Father: {fileID: 1819748244}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 0}
m_AnchorMax: {x: 1, y: 1}
m_AnchorMax: {x: 1, y: 0.500001}
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 20, y: 20}
m_Pivot: {x: 0.5, y: 0.5}
@@ -7034,7 +7034,7 @@ RectTransform:
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0.5}
m_AnchorMax: {x: 0.5, y: 0.5}
m_AnchoredPosition: {x: -280, y: 306.01196}
m_AnchoredPosition: {x: -280, y: 306.0125}
m_SizeDelta: {x: 560, y: 30}
m_Pivot: {x: 0, y: 1}
--- !u!114 &595796617
@@ -12391,8 +12391,8 @@ MonoBehaviour:
m_TargetGraphic: {fileID: 104269913}
m_HandleRect: {fileID: 104269912}
m_Direction: 2
m_Value: 1
m_Size: 1
m_Value: 0
m_Size: 0.500001
m_NumberOfSteps: 0
m_OnValueChanged:
m_PersistentCalls:
@@ -12992,7 +12992,7 @@ MonoBehaviour:
m_HorizontalOverflow: 0
m_VerticalOverflow: 0
m_LineSpacing: 1
m_Text: "\u5047\u82E5\u8FD9\u5957\u65B9\u6848\u771F\u7684\u6D41\u82B3\u5343\u53E4\uFF0C\u90A3\u4E48\u5B83\u7684\u5927\u540D\u5E94\u8BE5\u662F..."
m_Text: "\u5047\u82E5\u8FD9\u5957\u65B9\u6848\u771F\u7684\u662F\u7248\u672C\u7B54\u6848\uFF0C\u90A3\u4E48\u5B83\u7684\u5927\u540D\u5E94\u8BE5\u662F..."
--- !u!222 &1139619960
CanvasRenderer:
m_ObjectHideFlags: 0
-82
View File
@@ -1,82 +0,0 @@
{
"title": "Emilia",
"composer": "Pam_dinosaur",
"illustrator": "level8",
"charter": "ChartMaster",
"beatmapId": "NC-001",
"duration": 164,
"bpm": 100,
"difficulty": 2,
"difficultyName": "Hard",
"createdDate": "2025-03-18",
"musicFile": "Assets/Resources/song_songIndex/1002001_emilia/Emilia.ogg",
"backgroundFile": "Assets/Backgrounds/Emilia_bg.png",
"tracks": [
{ "color": "red" },
{ "color": "green" },
{ "color": "yellow" },
{ "color": "purple" },
{ "color": "blue" }
],
"notes": [
{ "time": 3.0, "trackIndex": 0, "color": "red", "type": "hold", "length": 2 },
{ "time": 3.0, "trackIndex": 1, "color": "green", "type": "hold", "length": 1 },
{ "time": 4.8, "trackIndex": 1, "color": "green", "type": "hold", "length": 2.4 },
{ "time": 4.8, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
{ "time": 5.4, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
{ "time": 6.0, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
{ "time": 6.6, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
{ "time": 7.2, "trackIndex": 0, "color": "red", "type": "hold", "length": 2.4 },
{ "time": 7.2, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
{ "time": 7.8, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
{ "time": 8.4, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
{ "time": 9.0, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
{ "time": 9.6, "trackIndex": 1, "color": "green", "type": "hold", "length": 2.4 },
{ "time": 9.6, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
{ "time": 10.2, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
{ "time": 10.8, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
{ "time": 11.4, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
{ "time": 12.0, "trackIndex": 3, "color": "purple", "type": "hold", "length": 1.95 },
{ "time": 12.0, "trackIndex": 1, "color": "green", "type": "tap", "length": 0 },
{ "time": 12.6, "trackIndex": 1, "color": "green", "type": "tap", "length": 0 },
{ "time": 13.2, "trackIndex": 1, "color": "green", "type": "tap", "length": 0 },
{ "time": 13.8, "trackIndex": 1, "color": "green", "type": "tap", "length": 0 },
{ "time": 13.95, "trackIndex": 2, "color": "yellow", "type": "tap", "length": 0 },
{ "time": 14.1, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
{ "time": 14.4, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
{ "time": 14.4, "trackIndex": 1, "color": "green", "type": "hold", "length": 2.4 },
{ "time": 15.0, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
{ "time": 15.6, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
{ "time": 16.2, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
{ "time": 16.8, "trackIndex": 0, "color": "red", "type": "hold", "length": 2.4 },
{ "time": 16.8, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
{ "time": 17.4, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
{ "time": 18.0, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
{ "time": 18.6, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
{ "time": 19.2, "trackIndex": 1, "color": "green", "type": "hold", "length": 2.4 },
{ "time": 19.2, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
{ "time": 19.8, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
{ "time": 20.4, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
{ "time": 21.0, "trackIndex": 3, "color": "purple", "type": "tap", "length": 0 },
{ "time": 21.6, "trackIndex": 2, "color": "yellow", "type": "hold", "length": 4.8 },
{ "time": 24.0, "trackIndex": 0, "color": "red", "type": "tap", "length": 0 },
{ "time": 24.3, "trackIndex": 0, "color": "red", "type": "tap", "length": 0 },
{ "time": 24.6, "trackIndex": 0, "color": "red", "type": "tap", "length": 0 },
{ "time": 24.9, "trackIndex": 0, "color": "red", "type": "tap", "length": 0 },
{ "time": 25.2, "trackIndex": 0, "color": "red", "type": "tap", "length": 0 },
{ "time": 25.5, "trackIndex": 0, "color": "red", "type": "tap", "length": 0 },
{ "time": 25.8, "trackIndex": 0, "color": "red", "type": "tap", "length": 0 },
{ "time": 26.1, "trackIndex": 0, "color": "red", "type": "tap", "length": 0 },
{ "time": 26.4, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
{ "time": 26.4, "trackIndex": 2, "color": "yellow", "type": "hold", "length": 4.8 },
{ "time": 26.4, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
{ "time": 26.7, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
{ "time": 27.0, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
{ "time": 27.3, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
{ "time": 27.6, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
{ "time": 27.9, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
{ "time": 28.2, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 },
{ "time": 28.5, "trackIndex": 4, "color": "blue", "type": "tap", "length": 0 }
],
"is_official": true
}
Binary file not shown.
@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 766c5cdd03fe3b442a103089aab05258
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
-8
View File
@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 6f4a0a330ab9975458f53e476ea37b3c
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
-792
View File
@@ -1,792 +0,0 @@
{
"title": "KongJiaBin",
"composer": "kongsb",
"illustrator": "J3",
"charter": "7DayShuo",
"beatmapId": "9527",
"duration": 165,
"bpm": 155,
"difficulty": 16,
"difficultyName": "16",
"createdDate": "2025-07-21 19:28:46",
"musicFile": "E:/Unity/EaseOut_FreshNew_ChartEditor/tmpSong/songs/songsTmp/KongJiaBin/KongJiaBin_@16.mp3",
"backgroundFile": "E:/Unity/EaseOut_FreshNew_ChartEditor/tmpSong/songs/songsTmp/KongJiaBin/KongJiaBin_@16.jpg",
"noteAmount": 69,
"tracks": [
{
"color": "red"
},
{
"color": "green"
},
{
"color": "yellow"
},
{
"color": "purple"
},
{
"color": "blue"
}
],
"notes": [
{
"time": 0.5605000257492065,
"trackIndex": 0,
"color": "red",
"type": "tap",
"length": 0.0,
"barNumber": 1,
"yPos": -171.9375,
"noteFunction": ""
},
{
"time": 0.9476000070571899,
"trackIndex": 1,
"color": "green",
"type": "tap",
"length": 0.0,
"barNumber": 1,
"yPos": -104.5625,
"noteFunction": ""
},
{
"time": 1.1411999464035035,
"trackIndex": 2,
"color": "yellow",
"type": "tap",
"length": 0.0,
"barNumber": 1,
"yPos": -70.875,
"noteFunction": ""
},
{
"time": 1.3346999883651734,
"trackIndex": 3,
"color": "purple",
"type": "tap",
"length": 0.0,
"barNumber": 1,
"yPos": -37.1875,
"noteFunction": ""
},
{
"time": 1.5283000469207764,
"trackIndex": 4,
"color": "blue",
"type": "tap",
"length": 0.0,
"barNumber": 1,
"yPos": -3.5,
"noteFunction": ""
},
{
"time": 1.5283000469207764,
"trackIndex": 0,
"color": "red",
"type": "tap",
"length": 0.0,
"barNumber": 1,
"yPos": -3.5,
"noteFunction": ""
},
{
"time": 1.7217999696731568,
"trackIndex": 1,
"color": "green",
"type": "tap",
"length": 0.0,
"barNumber": 1,
"yPos": 30.1875,
"noteFunction": ""
},
{
"time": 1.9154000282287598,
"trackIndex": 2,
"color": "yellow",
"type": "tap",
"length": 0.0,
"barNumber": 1,
"yPos": 63.875,
"noteFunction": ""
},
{
"time": 2.1089000701904299,
"trackIndex": 3,
"color": "purple",
"type": "tap",
"length": 0.0,
"barNumber": 1,
"yPos": 97.5625,
"noteFunction": ""
},
{
"time": 2.302500009536743,
"trackIndex": 4,
"color": "blue",
"type": "tap",
"length": 0.0,
"barNumber": 1,
"yPos": 131.25,
"noteFunction": ""
},
{
"time": 2.6895999908447267,
"trackIndex": 3,
"color": "purple",
"type": "tap",
"length": 0.0,
"barNumber": 1,
"yPos": 198.625,
"noteFunction": ""
},
{
"time": 2.6895999908447267,
"trackIndex": 4,
"color": "blue",
"type": "tap",
"length": 0.0,
"barNumber": 1,
"yPos": 198.625,
"noteFunction": ""
},
{
"time": 3.07669997215271,
"trackIndex": 2,
"color": "yellow",
"type": "tap",
"length": 0.0,
"barNumber": 1,
"yPos": 266.0,
"noteFunction": ""
},
{
"time": 3.126800060272217,
"trackIndex": 1,
"color": "green",
"type": "tap",
"length": 0.0,
"barNumber": 2,
"yPos": -264.27081298828127,
"noteFunction": ""
},
{
"time": 3.27020001411438,
"trackIndex": 0,
"color": "red",
"type": "tap",
"length": 0.0,
"barNumber": 2,
"yPos": -239.3125,
"noteFunction": ""
},
{
"time": 3.4637999534606935,
"trackIndex": 3,
"color": "purple",
"type": "tap",
"length": 0.0,
"barNumber": 2,
"yPos": -205.625,
"noteFunction": ""
},
{
"time": 3.4637999534606935,
"trackIndex": 2,
"color": "yellow",
"type": "tap",
"length": 0.0,
"barNumber": 2,
"yPos": -205.625,
"noteFunction": ""
},
{
"time": 3.8508999347686769,
"trackIndex": 1,
"color": "green",
"type": "tap",
"length": 0.0,
"barNumber": 2,
"yPos": -138.25,
"noteFunction": ""
},
{
"time": 4.23799991607666,
"trackIndex": 3,
"color": "purple",
"type": "hold",
"length": 6.0,
"barNumber": 2,
"yPos": -70.86726379394531,
"noteFunction": ""
},
{
"time": 4.23799991607666,
"trackIndex": 4,
"color": "blue",
"type": "hold",
"length": 6.0,
"barNumber": 2,
"yPos": -70.86726379394531,
"noteFunction": ""
},
{
"time": 4.818600177764893,
"trackIndex": 0,
"color": "red",
"type": "hold",
"length": 3.0968000888824465,
"barNumber": 2,
"yPos": 30.18742561340332,
"noteFunction": ""
},
{
"time": 4.818600177764893,
"trackIndex": 1,
"color": "green",
"type": "hold",
"length": 1.0,
"barNumber": 2,
"yPos": 30.18742561340332,
"noteFunction": ""
},
{
"time": 4.818600177764893,
"trackIndex": 2,
"color": "yellow",
"type": "hold",
"length": 1.0,
"barNumber": 2,
"yPos": 30.18742561340332,
"noteFunction": ""
},
{
"time": 10.625100135803223,
"trackIndex": 3,
"color": "purple",
"type": "tap",
"length": 0.0,
"barNumber": 4,
"yPos": -37.17913055419922,
"noteFunction": ""
},
{
"time": 10.818599700927735,
"trackIndex": 4,
"color": "blue",
"type": "hold",
"length": 6.0,
"barNumber": 4,
"yPos": -3.500127077102661,
"noteFunction": ""
},
{
"time": 11.205699920654297,
"trackIndex": 3,
"color": "purple",
"type": "hold",
"length": 6.0,
"barNumber": 4,
"yPos": 63.87547302246094,
"noteFunction": ""
},
{
"time": 11.205699920654297,
"trackIndex": 2,
"color": "yellow",
"type": "hold",
"length": 6.0,
"barNumber": 4,
"yPos": 63.87547302246094,
"noteFunction": ""
},
{
"time": 11.205699920654297,
"trackIndex": 1,
"color": "green",
"type": "hold",
"length": 6.0,
"barNumber": 4,
"yPos": 63.87547302246094,
"noteFunction": ""
},
{
"time": 11.205699920654297,
"trackIndex": 0,
"color": "red",
"type": "hold",
"length": 6.0,
"barNumber": 4,
"yPos": 63.87547302246094,
"noteFunction": ""
},
{
"time": 17.399200439453126,
"trackIndex": 2,
"color": "yellow",
"type": "hold",
"length": 6.0,
"barNumber": 6,
"yPos": 63.8671760559082,
"noteFunction": ""
},
{
"time": 17.399200439453126,
"trackIndex": 3,
"color": "purple",
"type": "hold",
"length": 6.0,
"barNumber": 6,
"yPos": 63.8671760559082,
"noteFunction": ""
},
{
"time": 17.399200439453126,
"trackIndex": 4,
"color": "blue",
"type": "hold",
"length": 6.0,
"barNumber": 6,
"yPos": 63.8671760559082,
"noteFunction": ""
},
{
"time": 17.399200439453126,
"trackIndex": 1,
"color": "green",
"type": "hold",
"length": 6.0,
"barNumber": 6,
"yPos": 63.8671760559082,
"noteFunction": ""
},
{
"time": 17.399200439453126,
"trackIndex": 0,
"color": "red",
"type": "hold",
"length": 6.0,
"barNumber": 6,
"yPos": 63.8671760559082,
"noteFunction": ""
},
{
"time": 23.59280014038086,
"trackIndex": 1,
"color": "green",
"type": "hold",
"length": 6.0,
"barNumber": 8,
"yPos": 63.876136779785159,
"noteFunction": ""
},
{
"time": 23.59280014038086,
"trackIndex": 2,
"color": "yellow",
"type": "hold",
"length": 6.0,
"barNumber": 8,
"yPos": 63.876136779785159,
"noteFunction": ""
},
{
"time": 23.59280014038086,
"trackIndex": 0,
"color": "red",
"type": "hold",
"length": 6.0,
"barNumber": 8,
"yPos": 63.876136779785159,
"noteFunction": ""
},
{
"time": 23.59280014038086,
"trackIndex": 4,
"color": "blue",
"type": "hold",
"length": 6.0,
"barNumber": 8,
"yPos": 63.876136779785159,
"noteFunction": ""
},
{
"time": 23.59280014038086,
"trackIndex": 3,
"color": "purple",
"type": "hold",
"length": 6.0,
"barNumber": 8,
"yPos": 63.876136779785159,
"noteFunction": ""
},
{
"time": 29.786300659179689,
"trackIndex": 0,
"color": "red",
"type": "hold",
"length": 6.0,
"barNumber": 10,
"yPos": 63.86783981323242,
"noteFunction": ""
},
{
"time": 29.786300659179689,
"trackIndex": 4,
"color": "blue",
"type": "hold",
"length": 6.0,
"barNumber": 10,
"yPos": 63.86783981323242,
"noteFunction": ""
},
{
"time": 29.786300659179689,
"trackIndex": 2,
"color": "yellow",
"type": "hold",
"length": 6.0,
"barNumber": 10,
"yPos": 63.86783981323242,
"noteFunction": ""
},
{
"time": 29.786300659179689,
"trackIndex": 3,
"color": "purple",
"type": "hold",
"length": 6.0,
"barNumber": 10,
"yPos": 63.86783981323242,
"noteFunction": ""
},
{
"time": 29.786300659179689,
"trackIndex": 1,
"color": "green",
"type": "hold",
"length": 6.0,
"barNumber": 10,
"yPos": 63.86783981323242,
"noteFunction": ""
},
{
"time": 35.97990036010742,
"trackIndex": 4,
"color": "blue",
"type": "hold",
"length": 6.0,
"barNumber": 12,
"yPos": 63.876800537109378,
"noteFunction": ""
},
{
"time": 35.97990036010742,
"trackIndex": 0,
"color": "red",
"type": "hold",
"length": 6.0,
"barNumber": 12,
"yPos": 63.876800537109378,
"noteFunction": ""
},
{
"time": 35.97990036010742,
"trackIndex": 1,
"color": "green",
"type": "hold",
"length": 6.0,
"barNumber": 12,
"yPos": 63.876800537109378,
"noteFunction": ""
},
{
"time": 35.97990036010742,
"trackIndex": 2,
"color": "yellow",
"type": "hold",
"length": 6.0,
"barNumber": 12,
"yPos": 63.876800537109378,
"noteFunction": ""
},
{
"time": 35.97990036010742,
"trackIndex": 3,
"color": "purple",
"type": "hold",
"length": 6.0,
"barNumber": 12,
"yPos": 63.876800537109378,
"noteFunction": ""
},
{
"time": 42.17340087890625,
"trackIndex": 1,
"color": "green",
"type": "hold",
"length": 6.0,
"barNumber": 14,
"yPos": 63.86850357055664,
"noteFunction": ""
},
{
"time": 42.17340087890625,
"trackIndex": 4,
"color": "blue",
"type": "hold",
"length": 6.0,
"barNumber": 14,
"yPos": 63.86850357055664,
"noteFunction": ""
},
{
"time": 42.17340087890625,
"trackIndex": 3,
"color": "purple",
"type": "hold",
"length": 6.0,
"barNumber": 14,
"yPos": 63.86850357055664,
"noteFunction": ""
},
{
"time": 42.17340087890625,
"trackIndex": 2,
"color": "yellow",
"type": "hold",
"length": 6.0,
"barNumber": 14,
"yPos": 63.86850357055664,
"noteFunction": ""
},
{
"time": 42.17340087890625,
"trackIndex": 0,
"color": "red",
"type": "hold",
"length": 6.0,
"barNumber": 14,
"yPos": 63.86850357055664,
"noteFunction": ""
},
{
"time": 48.367000579833987,
"trackIndex": 4,
"color": "blue",
"type": "hold",
"length": 6.0,
"barNumber": 16,
"yPos": 63.87746810913086,
"noteFunction": ""
},
{
"time": 48.367000579833987,
"trackIndex": 3,
"color": "purple",
"type": "hold",
"length": 6.0,
"barNumber": 16,
"yPos": 63.87746810913086,
"noteFunction": ""
},
{
"time": 48.367000579833987,
"trackIndex": 2,
"color": "yellow",
"type": "hold",
"length": 6.0,
"barNumber": 16,
"yPos": 63.87746810913086,
"noteFunction": ""
},
{
"time": 48.367000579833987,
"trackIndex": 0,
"color": "red",
"type": "hold",
"length": 6.0,
"barNumber": 16,
"yPos": 63.87746810913086,
"noteFunction": ""
},
{
"time": 48.367000579833987,
"trackIndex": 1,
"color": "green",
"type": "hold",
"length": 6.0,
"barNumber": 16,
"yPos": 63.87746810913086,
"noteFunction": ""
},
{
"time": 54.56050109863281,
"trackIndex": 4,
"color": "blue",
"type": "hold",
"length": 6.0,
"barNumber": 18,
"yPos": 63.86916732788086,
"noteFunction": ""
},
{
"time": 54.56050109863281,
"trackIndex": 3,
"color": "purple",
"type": "hold",
"length": 6.0,
"barNumber": 18,
"yPos": 63.86916732788086,
"noteFunction": ""
},
{
"time": 54.56050109863281,
"trackIndex": 1,
"color": "green",
"type": "hold",
"length": 6.0,
"barNumber": 18,
"yPos": 63.86916732788086,
"noteFunction": ""
},
{
"time": 54.56050109863281,
"trackIndex": 2,
"color": "yellow",
"type": "hold",
"length": 6.0,
"barNumber": 18,
"yPos": 63.86916732788086,
"noteFunction": ""
},
{
"time": 54.56050109863281,
"trackIndex": 0,
"color": "red",
"type": "hold",
"length": 6.0,
"barNumber": 18,
"yPos": 63.86916732788086,
"noteFunction": ""
},
{
"time": 60.75410079956055,
"trackIndex": 4,
"color": "blue",
"type": "hold",
"length": 6.0,
"barNumber": 20,
"yPos": 63.87813186645508,
"noteFunction": ""
},
{
"time": 60.75410079956055,
"trackIndex": 3,
"color": "purple",
"type": "hold",
"length": 6.0,
"barNumber": 20,
"yPos": 63.87813186645508,
"noteFunction": ""
},
{
"time": 60.75410079956055,
"trackIndex": 0,
"color": "red",
"type": "hold",
"length": 6.0,
"barNumber": 20,
"yPos": 63.87813186645508,
"noteFunction": ""
},
{
"time": 60.75410079956055,
"trackIndex": 1,
"color": "green",
"type": "hold",
"length": 6.0,
"barNumber": 20,
"yPos": 63.87813186645508,
"noteFunction": ""
},
{
"time": 60.75410079956055,
"trackIndex": 2,
"color": "yellow",
"type": "hold",
"length": 6.0,
"barNumber": 20,
"yPos": 63.87813186645508,
"noteFunction": ""
}
],
"enemyList_isEmpty": false,
"colorSegments": [],
"is_official": true,
"noteStatistics": [
{
"colorType": "red_tap",
"count": 3
},
{
"colorType": "green_tap",
"count": 4
},
{
"colorType": "yellow_tap",
"count": 4
},
{
"colorType": "purple_tap",
"count": 5
},
{
"colorType": "blue_tap",
"count": 3
},
{
"colorType": "purple_hold",
"count": 10
},
{
"colorType": "blue_hold",
"count": 10
},
{
"colorType": "red_hold",
"count": 10
},
{
"colorType": "green_hold",
"count": 10
},
{
"colorType": "yellow_hold",
"count": 10
}
],
"trackStates": {
"trackFading_active": false,
"red": {
"isOn": false,
"fadeTime": 0.0
},
"green": {
"isOn": false,
"fadeTime": 0.0
},
"yellow": {
"isOn": false,
"fadeTime": 0.0
},
"purple": {
"isOn": false,
"fadeTime": 0.0
},
"blue": {
"isOn": false,
"fadeTime": 0.0
}
}
}
@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: e29f59e32229ac84ea59aab9113eb726
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
File diff suppressed because it is too large Load Diff
@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 7b1de74fe81264d4092e27d2191be0d8
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 17be1f8a2f21e0049879e5119b3bcad8
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: b3a690ac04311734692c821109495034
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 5b90d4905a54e4b4dbcad8efd9a82461
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: d854e85daeb5b31489fea4a555f755bf
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: fdd55d16175dfeb40aab405ddeab567d
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 7856d24a5713c6f46ae10440096b3418
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: c5d89ab93cf353e4689d5d0459725992
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: f5991264910b4b94a8c3be1dec547f75
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 5c0ea5398ea102a438739819360fa7e4
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: d19bbe6aa2304114f9fc8e3579b37ace
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 27c46abd591e1d24880fc7ca95d3dca1
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 45aab4fe51a13b44f8557c594d03fe0d
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1 +0,0 @@
level=none expiry=0
@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: c523bcbdf800ef5499e63c674f6b7c92
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 354b2d2c0905c6f4b9ab87366913037a
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 9ea0ae9658a701b4f86399afc7889204
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 455638bc5859bc94695f64cae7a817ed
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 99cd8e3135de47743b66dec04427a2ac
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 55145ca1f0920f1409577041c2b078bb
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: c2b7c2a7b95a44143818fc4419f527d6
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: ddde08d96b2145a4aa268d90af0dcece
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: d8dc598897bd7974caffeec408e88d4c
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: f2093035ccb63db4280042e173dde890
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: d98912b65a09c6841a96bf3f1bedc954
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 442089b03e0caa44ea7231b9be25b0e8
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 31bbd2342f3c31f4d863735f45fd222b
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 4be5195c27d20d343b0ab3ce6d78d5bc
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: c934586fd608f5e4a812096bae36e7ac
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: ef4446fc8ef71244f84c22e685d14aa4
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 04d6a228aeb377e4790153925b249d82
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 5ee404de47c6c4a4a9080b3c25cd2e21
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 51335a0e9abbf914c8629702b37a99c5
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: ea42a4b68c47d8549a127d2aea72ab61
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 88a1ce82382751342bd782831f6bf082
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 46b97c4a835a40e429a619d3b3b53be3
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
Binary file not shown.

Before

Width:  |  Height:  |  Size: 63 KiB

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: c2a19d7610ef7c54e8e5239b5e0e4bae
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
Binary file not shown.

Before

Width:  |  Height:  |  Size: 48 KiB

Some files were not shown because too many files have changed in this diff Show More