Broken UI and Loading screens

This commit is contained in:
Jan Racek
2026-03-26 19:14:15 +01:00
parent a8aa674a9c
commit d5be174247
6 changed files with 542 additions and 1 deletions

View File

@@ -109,6 +109,15 @@ namespace SplashEdit.EditorCode
return Path.Combine(BuildOutputDir, $"scene_{sceneIndex}.splashpack");
}
/// <summary>
/// Gets the loader pack (loading screen) output path for a scene by index.
/// Uses a deterministic naming scheme: scene_0.loading, scene_1.loading, etc.
/// </summary>
public static string GetSceneLoaderPackPath(int sceneIndex, string sceneName)
{
return Path.Combine(BuildOutputDir, $"scene_{sceneIndex}.loading");
}
/// <summary>
/// ISO output path for release builds.
/// </summary>