小问题修复

This commit is contained in:
SoulliesOfficial
2026-07-14 14:29:33 -04:00
parent dbe7d99a90
commit 29c981eb58
13 changed files with 42921 additions and 2249 deletions

View File

@@ -26,10 +26,11 @@ namespace Ichni.RhythmGame
bool isFirstGenerated, GameElement parentElement)
{
base.Initialize(name, elementGuid, tags, isFirstGenerated, parentElement);
if (this.parentElement.submoduleList.Count == 0 ||
!this.parentElement.submoduleList.Exists(e => e is TransformSubmodule))
if ((this is Displacement || this is Swirl || this is Scale || this is LookAt) && (this.parentElement.submoduleList.Count == 0 ||
!this.parentElement.submoduleList.Exists(e => e is TransformSubmodule)))
{
LogWindow.Log("AnimationBase must be attached to a GameElement with TransformSubmodule", Color.red);
LogWindow.Log("Transform animation must be attached to a GameElement with TransformSubmodule", Color.red);
LogWindow.Log(this.elementName + " " + this.elementGuid.ToString(), Color.red);
}
// 向 ElementUpdateScheduler 注册 Phase.Animation

View File

@@ -238,6 +238,7 @@ namespace Ichni
musicPlayer.audioSource.clip = songInformation.song;
beatmapContainer.gameElementList.ForEach(gameElement =>
{
Debug.Log(gameElement.elementName + " " + gameElement.elementGuid);
gameElement.AfterInitialize();
gameElement.Refresh();
});

File diff suppressed because it is too large Load Diff

View File

@@ -6,7 +6,7 @@
"creatorName" : "小优!!!!",
"editorVersion" : "0.1.0",
"createTime" : "2026\/6\/14 14:50:34",
"lastSaveTime" : "2026\/7\/10 15:01:15",
"lastSaveTime" : "2026\/7\/15 1:10:20",
"selectedThemeBundleList" : [
"basic","departure_to_multiverse"
],

View File

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

View File

@@ -1,6 +1,6 @@
ManifestFileVersion: 0
UnityVersion: 6000.3.7f1
CRC: 1128305406
CRC: 2830559764
HashAppended: 0
AssetBundleManifest:
AssetBundleInfos:

View File

@@ -10,7 +10,7 @@ Hashes:
Hash: 51a9c20dab19416e261c53882aece497
IncrementalBuildHash:
serializedVersion: 2
Hash: 89114e17dccffbc3a51842b810fa96c4
Hash: 6ad136e423316b4e28b06c231c73f24c
HashAppended: 0
ClassTypes:
- Class: 1

View File

@@ -1,16 +1,16 @@
ManifestFileVersion: 0
UnityVersion: 6000.3.7f1
CRC: 542120700
CRC: 978989022
Hashes:
AssetFileHash:
serializedVersion: 2
Hash: 325f31f020822b789d2942c6475754f6
Hash: 1b09568bb134c0d52b4a0f5b1b89ca8f
TypeTreeHash:
serializedVersion: 2
Hash: 18cfab2a6b4e689dd1e9255aa8b69d98
IncrementalBuildHash:
serializedVersion: 2
Hash: 2521259acc3946dca476d627d2f8f230
Hash: 516bd98ea3f8ab8f85f5f97b7f6fb625
HashAppended: 0
ClassTypes:
- Class: 1

View File

@@ -10,7 +10,7 @@ Hashes:
Hash: 2059feeebcfd643174e01ec401e33f9c
IncrementalBuildHash:
serializedVersion: 2
Hash: 3004808577d6b30419ecd70193bf605a
Hash: 63eda978819f97c897b2e37a3c9c1106
HashAppended: 0
ClassTypes:
- Class: 1

File diff suppressed because one or more lines are too long