Trick on the Class Overhaul (#619)

* totc internal systems rework

add chair, shock

* shock near miss

* phone

* start optic blast

switch phone variant

* optic blast

chrono sorting takes mobile into account
This commit is contained in:
minenice55
2024-01-12 21:40:35 -05:00
committed by GitHub
parent bdb8574489
commit 490ccd886d
57 changed files with 41284 additions and 400 deletions

View File

@ -310,6 +310,7 @@ namespace HeavenStudio.Editor
new List<RectTransform>(),
new List<RectTransform>(),
new List<RectTransform>(),
new List<RectTransform>(),
};
for (int i = 0; i < mgs.Count; i++)
{
@ -321,10 +322,11 @@ namespace HeavenStudio.Editor
"ntr" => 1,
"rvl" => 2,
"ctr" => 3,
_ => 4,
"mob" => 4,
_ => 5,
}].Add(mgs[i]);
} else if (mg.inferred) {
systems[4].Add(mgs[i]);
systems[^1].Add(mgs[i]);
} else {
Debug.LogWarning($"Chronological sorting has failed, does \"{mg.displayName}\" ({mg.name}) have an asset bundle assigned to it?");
}