This commit is contained in:
SoulliesOfficial
2025-08-19 08:13:47 -04:00
parent 66ec7fb4a9
commit 2e4398b9c1
175 changed files with 146598 additions and 2124247 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,7 @@
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using Ichni.RhythmGame;
using UnityEngine;
using UnityEngine.Events;
@@ -290,8 +291,8 @@ namespace Ichni.Editor
DynamicUICustomCurveKeyframeUnit unit = unitList[i] as DynamicUICustomCurveKeyframeUnit;
newCurve.AddKey(unit.GetValue());
}
connectedBaseElement.GetType().GetField(parameterName).SetValue(connectedBaseElement, newCurve);
FieldInfo fieldInfo = connectedBaseElement.GetType().GetField(parameterName);
fieldInfo.SetValue(connectedBaseElement, newCurve);
};
return this;
}
@@ -327,7 +328,13 @@ namespace Ichni.Editor
{
newColorKeys.Add((unit as DynamicUIGradientColorKeyUnit).GetValue());
}
(connectedBaseElement.GetType().GetField(parameterName).GetValue(connectedBaseElement) as Gradient).colorKeys = newColorKeys.ToArray();
FieldInfo fieldInfo = connectedBaseElement.GetType().GetField(parameterName);
Gradient originalGradient = fieldInfo.GetValue(connectedBaseElement) as Gradient;
Gradient newIndependentGradient = new Gradient();
newIndependentGradient.alphaKeys = originalGradient.alphaKeys;
newIndependentGradient.mode = originalGradient.mode;
newIndependentGradient.colorKeys = newColorKeys.ToArray();
fieldInfo.SetValue(connectedBaseElement, newIndependentGradient);
};
return this;
@@ -364,7 +371,13 @@ namespace Ichni.Editor
{
newAlphaKeys.Add((unit as DynamicUIGradientAlphaKeyUnit).GetValue());
}
(connectedBaseElement.GetType().GetField(parameterName).GetValue(connectedBaseElement) as Gradient).alphaKeys = newAlphaKeys.ToArray();
FieldInfo fieldInfo = connectedBaseElement.GetType().GetField(parameterName);
Gradient originalGradient = fieldInfo.GetValue(connectedBaseElement) as Gradient;
Gradient newIndependentGradient = new Gradient();
newIndependentGradient.colorKeys = originalGradient.colorKeys;
newIndependentGradient.mode = originalGradient.mode;
newIndependentGradient.alphaKeys = newAlphaKeys.ToArray();
fieldInfo.SetValue(connectedBaseElement, newIndependentGradient);
};
return this;
@@ -406,7 +419,8 @@ namespace Ichni.Editor
KeyValuePair<string, int> pair = (unit as DynamicUIStringIntPairUnit).GetValue();
dictionaryList.Add(pair.Key, pair.Value);
}
connectedBaseElement.GetType().GetField(parameterName).SetValue(connectedBaseElement, dictionaryList);
FieldInfo fieldInfo = connectedBaseElement.GetType().GetField(parameterName);
fieldInfo.SetValue(connectedBaseElement, dictionaryList);
};
return this;

View File

@@ -77,6 +77,8 @@ namespace Ichni.Editor
var clipSettings = container.GenerateSubcontainer(3);
var applyClipButton = escapeConfirmWindow.GenerateButton(clipSettings, "Yes", () =>
{
InformationTransistor.instance.isLoadedProject = true;
InformationTransistor.instance.loadedProjectName = EditorManager.instance.projectInformation.projectName;
SceneManager.LoadScene("EditorScene");
});
var cancelButton = escapeConfirmWindow.GenerateButton(clipSettings, "No", () =>

View File

@@ -123,14 +123,15 @@ namespace Ichni
public void LoadProject(string projectName)
{
if (!InformationTransistor.instance.isRecovery)
{
projectManager.loadManager.Load(projectName);
Debug.Log("Loaded");
}
else
{
projectManager.loadManager.LoadExport(projectName);
}
musicPlayer.audioSource.clip = songInformation.song;
beatmapContainer.gameElementList.ForEach(gameElement =>
{

View File

@@ -186,7 +186,6 @@ namespace Ichni
public void LoadExport(string projectName)
{
LoadProjectInfoExport(projectName);
LoadSongInfoExport(projectName);
LoadCommandScriptsExport(projectName);
@@ -491,6 +490,12 @@ namespace Ichni
string oldestSave = saveFiles[saveFiles.Count - 1];
File.Delete(oldestSave);
saveFiles.RemoveAt(saveFiles.Count - 1);
LogWindow.Log("AutoSave finished, the oldest file deleted");
}
else
{
LogWindow.Log("AutoSave finished");
}
// 依次重命名存档
@@ -521,7 +526,7 @@ namespace Ichni
Directory.CreateDirectory(autoSavePath);
}
List<string> saveFiles = new List<string>(Directory.GetFiles(autoSavePath, "AutoSave_*.es3"));
List<string> saveFiles = new List<string>(Directory.GetFiles(autoSavePath, "AutoSave_*.json"));
saveFiles.Sort(string.Compare);
return saveFiles;
}

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 2bc7ed6d197f00c40a61689493c13bc3
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 7ab6cd8f9a2e77c49a158e16014f9cec
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: ea0bacd3ed7195746b49570b6e3cd914
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 1a9954e4bac0f435e86fb1efe65ee448
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: b06ede4b8c5751e438191b94eb2a6d6a
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 06b59e3e279fe5d41bba601c3d5772e8
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: b0fbab23728869440b2cec7734df60b8
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: e8fb6d5ebcc50ca43a10810fe0a3a2bf
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 0f6ec5285bcc8f44ca77fa84379898fd
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 1a864586b3cd01640a83d6564b5c3c7e
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: f560c87264a71a64da35dd32dc5ae59f
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: d76004fcc5c5e3445a662dd3ac9b03ad
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 239351ec00e5942759a8050c450d7a89
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 9261ad11edf9a42369994908c53e5ddf
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 8ade827ad61102946926e5f15fbfad63
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,13 +0,0 @@
{
"BeatMap" : {
"__type" : "Ichni.RhythmGame.Beatmap.BeatmapContainer_BM,Assembly-CSharp",
"value" : {
"elementList" : [
],
"attachedElementGuid" : {
"value" : "00000000-0000-0000-0000-000000000000"
}
}
}
}

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 7a16dd0f183be7e49b40a885552321f1
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 0a9f706af43b0b54d9afca352cd8b4e3
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: c3b80ab84195d7542939eb30992348d2
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 6f6ef112bd8d5f240a348255c1af3b94
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 9c9ddfe3eace87a489df0d0170844d35
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: ce3697d0e6db3a44aa65f230b12a9fa6
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 7f59135bf6881b347b3d735f68a680ca
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: ad45440f212c99d40bce3fb3fdda1f27
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 7c6d26bb37b79cd42bc9621250306e32
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: b4e7697898075b64daab10655d05ba4d
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 0c8472dfe9f25a74783ba02fe34a33f0
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1 +0,0 @@
ÛJ=l{²k¯ùÞ†=<3D>ñ»÷ºˆ@Š¥DrFz«ÿ€rEIð ¥QÓRÅ¿7Íwó¥Ë˜Vøý˜Ùa1ÍMCieô«nC¡÷L%lŠc¢ÖÑóÍñóÁux„uÿåYþ§Ð9rùèJºCØý\=ârÁ¾ïbU®ïTMŒõz*¶î4 c3•Àf:³D¹QxQë+Õ€S)òk®s`SñGrÕžÕ“¾Ç½^‹ðþ*e/7<“?£#‡

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 17ba530f22a20a447823a433b1ac30a9
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,3 +0,0 @@
\Э═╘Ы
╨н┴║┘▄╙ ┬P*.┌цn@/╨*б$≤2═╙ЗеЖG*бэc≤5,А,БrЫЙ9с,ДV╠9Mй
v■

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: ed6c895e924ec38489dd0d05b08bdf0b
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1 +0,0 @@
αH³®” ”ΰ;ϊΏ>ν¥έy•εd«W&”Xh%<25>Δ?άΕVίB®>ΝκJhg·σ―>µωΦΡρ_s®Η{u΄<>Πγ½&±6…<06>κ΄Ϊΐ<CEAA>FΡκ<E28093> NΧ<4E><CEA7> τ<12><4F>&ΧΚEΕSkwϊζσ¥\@WWgFQϋxύίίΑTST°*η*?o/M[2Zµ3α)€τ“–]Σ@¨Zd<5A>4TCCc©αd8go¶ζϊσaβε¤D8J«G<C2AB>"!0ΐζΑniσW—3…mΗΡΣ¨<CEA3>6ωEbέ0<CEAD>YX5wV

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 9b42ef915122c0243bc4674bb8c9f485
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 33035960cabebd347953e45aa5e7de13
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 5edcdcd93edbc314e9177d5c944bb223
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1 +0,0 @@
3<EFBFBD>°ƒi|»Θ<C2BB><CE98>

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 55fe076f5684df64dbe63e1983e2e50a
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: db60ed7fe9d7b0d40b909710dcce2253
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1 +0,0 @@
2ŢôPXŘÉďrÁ_†%ôňŰ:-Î@Ţ%ă>Šłą/Ýúv>4ç,Z<>¨č<C2A8>Z äfEKśaízŇę Ć_»iU] h=Í%XfŢŚő°ŕůÓý€^ŽĹ‡}0i+D+"BÜ>qţ` Z¶Ű«+ęĘáŹßµ·_<N 1łůW~zŚNŽr+EkîőDşwđ°ŕGćž©´©%w”Ł<E2809D>_w¸âP/đ¸^[uU„ćčXc¸ä©§ś,k[śé=żZžK'?űôéźiSň÷v§»­Ę…Af?×đ{ł(ł÷_ŐlŔ%±EMłAŁqëíLŁđa<

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: f54369b8bd64d92478f20304b39ee5cb
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 1869c0782bf376646b7febaa3db299e7
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: fb19b9b1e7e2c684f990636ac4dfe02c
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 9aa97d4a9625dd548affb49c9a510692
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 74654b8aeb59edf40b223eec9d6fc785
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,3 +0,0 @@
&ŕ ó¸6W@5ć•VH;kĹëóŠÁ(%Ůtߎ§şćj˛ť/*F0Ý*űĎď8ŐLŠŠµ~ĺrłÝT0íwě
'Äć—ď
†ú]ök´(fÝčfQ·»4©ŃÚVC×$<24>:ü¬éPÍź  ÂZ~Ň3ł+ů âćW <09>ý ëŁ"ë)K·}Ş<14>ˇz˘(Á{L”ĐBhi€™wň{h<>©łŇ§áÚgB9Äx»!Ó4!miľ_xxý-<2D>öSă/ćVŸMóDڶ«C/ěŰ”ů;ĺX<C4BA>ČżŚš|eqüö¨ô‰|1ZĚ„¨k93ĂŤá—śÔŃâqB;7.cxü<78><T·Ć_Éj1«âĘŹ4÷3%<25> ´Ęő9ý!óÂKÉú=,@GLŃOypäňzÎ*@›Ú

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 85b6a0c5f95683a48ae9fc2e4cc37fa6
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: b2ae4bbc65f5ea740b3184ea24d1a8af
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: d84e4e22da5a3a042a602cb47c4a49bb
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: dcb6183f09c89984ea3c183da03ed715
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: da4e4366ed8cc5b44823d26824aa6eaa
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: d2eb4dbc03eb79540ba7d932a2ec3524
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1 +0,0 @@
ôC÷}×î´´B,Ôü9öçÁ(»ØÑj¢M?´AG(¡<>±ÑôSBÑ»‡uKÙïái·Éÿ~¸ iµ7Ò+<²ú÷Þ¸~IµƒÐçt+m†å¦&(òîxŠ ]ñ¬Æ˜H¤ýŠúÏ#q$ £ÿ¸R\µ¹u ÌñY  66ñˆcßæËÀž_áÒÚÙO5õûÊ ¶l·8³—¹÷bŒ‹®ú]ç Ÿ<>ØÄe,¾]Bà-|îïø—/·Gs+3(òxé×E}p»ªÙVD-ëv6'Ã

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 5e27143b2b6a75e4886da4932b96831b
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 24174cd2a1813044095223e2cffcaf5f
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 8cad2a33548d10a4a8781cdd6c79d5a9
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1 +0,0 @@
ŇAt”ĺşíˇv

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 005d1912115b7624f9ab8d4abda7a441
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,2 +0,0 @@
ãÙ™p*Ååj Ejõ´•wÇ<77>¤J‰”+õû{ª<>W©¸ \ÿ´‰v¼EwÝat&ÞAÿÚ„¶wü¸  <>tžñ³¥uËç•Ð[Ú!4øŸ'Ƀ“Rc ØûáÕ«.K@Rq‰ïÃpísF2í!Gmïöê%}¨ÎKj¢3Ê¥<C38A>{«dtr\Øî93JTΪDR»,±óG"UÙ¼I¶ÞiËþN.
ÎÖÿB2ITQÃê°èÞ¿ÉJK%{¹zµX×®Êw,}G äIÕE†n{yî#Šzþ7õ•tŠÆð;ÏÁåý[+Bhcìç rDz®° Fׯ

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 94acbc361c9943749a586b98ec617fd7
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,2 +0,0 @@
Q°<éÄðó4ÄÉP£Jsì;¹Ã
㨔A mê§ô%¨¹w¬Hšr±ëê+±þBÏïRÃæ5­r{‡ÑZ64£XÙ÷ngQ¤qó<71>{4Y¹ÿú*mmmYÿŽ÷Ä_\r,MÏŸË\ÝÖ‘½:¨Ði¡G¶,{}ÜÄ+Ú&ü°½„§:òß™l»g"ýnº©5<U<>â6˜X¶3*2Œy:Í)KÐÓ¦öñ±y§ƒt„#ÚÕ†ð¦Íz @Ëä$<ºóÏ›>ßÎi7€qYÎø=žÊœ¾ÔêÞæªÛ¥Œæ€–òz²xn©J:Ž

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: ab99a3ebbf952e34cbece885a3804e0a
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: eeb9f29d566596e4aa3b9c287caff10c
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: f0ac9ce3d5b33e140a521374b0597e1c
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,3 +0,0 @@
>ŸXxDù\¹êÖó£Çâ6ÀSÓQ`>„Ô÷Hhy*ù¡×tžU.Œ&H,Ú{Y&Ú
ÏTû'pÿÀƒqº#QÔ3Q²1/þn¦BŽ€»¯ãf•`F>î=rõ¾<C3B5>Z'bèÑ”n‰>õØAÔ_…Ç7£öù³p¸·9l"AKï<4B>ëBÉ´¢&Æ5GÔjäd÷†ÏʽeXCÏíCgvFùúò@”6Ís(ÕªƒÐ‡Í<E2809A>¹³?îÑ-ÛîVâ61O]

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 4bae796b2f74cc9438e2354c67530785
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 9bffd9793ff4fb5428356f6f601db565
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,2 +0,0 @@
`ב1c¶iֺ+<2B>^zןר0״ZTKֹDv<E2808F>Jm כ×7lQ]V•Gֶu°לvֿ@ז4X[עלS<>DZאk¨l<C2A8>7r<37>:ִµױ¢;<3B>)X~+8ֵֿeס$ס¬¡LB•קlf<6C>j‰Kyֳ<79>W˜ח?<>Ft!G×^x9?½ִ£µ{¶ץ<C2B6>B-}{E׳ו l=חva4l~¡®¦7׃g³ררD«m<6D>׃<33>ק·¡„‏­‰×£װ~
¯–ְ@<40><EFBFBD><E280A1>ֵfIד@<0E>Gזִ­<C2AD>ֻ<EFBFBD>r־/8

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 31d482e33bd4bea47a1f4b718f271f79
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: c0d9417934ddc784599d9438cd8fc9ca
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

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