-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* WIP Rebuild of Active Players List PR for engine-refactor * Rebuilt ActivePlayerList and ActivePlayerListItem components. Added these to the Status Bar * Update Instrument icon on Active Players List when changing a profile's GameMode, or when choosing an instrument in the Diffisulty Select Menu. * WIP Attempt to add star power glow to Color Presets * Fix one type mismatch * WIP adding color preset option for star power glow colour on note highways * Update YARG.Core * Implemented Star Power colour and Groove colours to ColorProfiles Introduced new "Common" section for ColorProfiles Star Power and Groove colours can now be customized or disabled using the above ColorProfile properties Added "Boring" default color preset which hides Groove and Star Power glow effects. * Update YARG.Core * Added (non-groove) background colours to ColorProfile Force Star Power and Groove on for FakeTrackPlayer * Update YARG.Core * Move highway colours to separate HighwayPreset class, and update usages Update TrackPreviewBuilder to force Star Power and Groove on as needed Added Highway Preset option to ProfileSidebar Moved localization text to subkey * Fixed Highway Preset changes not being applied on Profiles List screen * Removed unused localization key. Update YARG.Core * Remove HighwayPreset from ReplayData * Remove one unused parameter in ReplayData * Removed TrackMaterial.Preset.Layer struct and simplified usage Addressed PR feedback * Update YARG.Core * Update YARG.Core
- Loading branch information
Showing
15 changed files
with
631 additions
and
65 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
Assets/Script/Settings/Customization/HighwayPresetContainer.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using System.Collections.Generic; | ||
using YARG.Core.Game; | ||
|
||
namespace YARG.Settings.Customization | ||
{ | ||
public class HighwayPresetContainer : CustomContent<HighwayPreset> | ||
{ | ||
protected override string ContentDirectory => "highwayPresets"; | ||
|
||
public override string PresetTypeStringName => "HighwayPreset"; | ||
|
||
public override IReadOnlyList<HighwayPreset> DefaultPresets => HighwayPreset.Defaults; | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
Assets/Script/Settings/Customization/HighwayPresetContainer.cs.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.