This commit is contained in:
2022-11-30 22:32:10 +01:00
parent 2b3daeadc2
commit ae3c6a50f5
35 changed files with 4502 additions and 7 deletions

View File

@@ -47,6 +47,7 @@ namespace EscapeRoomEngine.Desert.Runtime.Puzzle_B
PuzzleEvent += (_, type) =>
{
// ReSharper disable once SwitchStatementMissingSomeEnumCasesNoDefault
switch (type)
{
case PuzzleEventType.Restarted:
@@ -61,10 +62,6 @@ namespace EscapeRoomEngine.Desert.Runtime.Puzzle_B
rotators.ForEach(rotator => rotator.Emission.color = _solvedColor.hdr);
buttonActions.ForEach(action => action.button.Disable());
break;
case PuzzleEventType.WrongInput:
break;
default:
throw new ArgumentOutOfRangeException(nameof(type), type, null);
}
};