Update display issues with the puzzle steps

This commit is contained in:
Michal Pikulski
2025-10-15 16:33:19 +02:00
parent 9de50c42bc
commit 17feef7945
2 changed files with 59 additions and 63 deletions

View File

@@ -29,14 +29,12 @@ namespace PuzzleS
/// <summary>
/// Steps that should be unlocked at level start (no dependencies)
/// </summary>
[HideInInspector]
public List<PuzzleStepSO> initialSteps = new List<PuzzleStepSO>();
/// <summary>
/// Pre-processed dependency data built at edit time.
/// Maps step IDs to arrays of dependency step IDs (which steps are required by each step)
/// </summary>
[HideInInspector]
public Dictionary<string, string[]> stepDependencies = new Dictionary<string, string[]>();
/// <summary>