Skip to content

Commit

Permalink
Base BGA: Revert Modifier Display in Pattern Select
Browse files Browse the repository at this point in the history
  • Loading branch information
Noisysundae committed Mar 31, 2022
1 parent e5e48ca commit 73d3f1b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 13 deletions.
17 changes: 4 additions & 13 deletions TECHMANIA/Assets/Scripts/Components/Main Menu/ModifierSidesheet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -202,20 +202,11 @@ public static string GetDisplayString(
List<string> specialSegments = new List<string>();
Modifiers.instance.ToDisplaySegments(
regularSegments, specialSegments);
switch (bgSource)
if (bgSource ==
PerTrackOptions.BackgroundSource.PatternImage)
{
case PerTrackOptions.BackgroundSource.PatternBga:
regularSegments.Add(Locale.GetString(
"modifier_bg_source_pattern_bga"));
break;
case PerTrackOptions.BackgroundSource.BaseBga:
regularSegments.Add(Locale.GetString(
"modifier_bg_source_base_bga"));
break;
case PerTrackOptions.BackgroundSource.PatternImage:
regularSegments.Add(Locale.GetString(
"modifier_bg_source_pattern_image"));
break;
regularSegments.Add(Locale.GetString(
"modifier_sidesheet_no_video_label"));
}

List<string> allSegments = new List<string>();
Expand Down
1 change: 1 addition & 0 deletions TECHMANIA/Assets/String Table.csv
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,7 @@ but may cause audio issues such as stuttering.","数值越小,音频延迟越
,options_bg_scaling_fill_entire_screen,Fill entire screen,覆盖整个屏幕,覆蓋整個螢幕,画面に合わせる,전체 화면
,options_bg_scaling_fill_game_area,Fill game area,仅覆盖游戏区域,僅覆蓋遊戲區域,ゲームプレイエリアに合わせる,게임 플레이 영역
,options_default_background_brightness_label,Default BG brightness,,,,
,modifier_sidesheet_no_video_label,No video,不播放视频,不播放影片,BGAオフ,BGA 끄기
,options_default_background_display_label,Default BG source,,,,
,options_base_bga_playback_mode_label,Base BGA: Playback mode,,,,
,options_base_bga_playback_mode_caption,"<i><b>Seeded:</b></i> Same track, same base BGA
Expand Down

0 comments on commit 73d3f1b

Please sign in to comment.