Skip to content

Commit

Permalink
Version
Browse files Browse the repository at this point in the history
  • Loading branch information
Kylemc1413 committed Jun 10, 2019
1 parent 7e6588e commit a422ed3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions ProgressBar.cs
Expand Up @@ -182,8 +182,9 @@ private void Update()
{
if (!_canvas.enabled) return;
_loadingBar.fillAmount = Loader.LoadingProgress;
_loadingBar.color = HSBColor.ToColor(new HSBColor(Mathf.PingPong(Time.time * 0.4f, 1), 1, 1));
_headerText.color = HSBColor.ToColor(new HSBColor(Mathf.PingPong(Time.time * 0.4f, 1), 1, 1));

_loadingBar.color = HSBColor.ToColor(new HSBColor(Mathf.PingPong(Time.time * 0.35f, 1), 1, 1));
_headerText.color = HSBColor.ToColor(new HSBColor(Mathf.PingPong(Time.time * 0.35f, 1), 1, 1));
}
}
}
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("2.0.0.0")]
[assembly: AssemblyFileVersion("2.0.0.0")]
4 changes: 2 additions & 2 deletions manifest.json
Expand Up @@ -2,10 +2,10 @@
"$schema": "https://raw.githubusercontent.com/nike4613/ModSaber-MetadataFileSchema/master/Schema.json",
"author": "Kyle1413",
"description": "A plugin for handling custom song additions in Beat Saber.",
"gameVersion": "1.0.0",
"gameVersion": "1.1.0",
"id": "SongCore",
"name": "SongCore",
"version": "1.0.0",
"version": "2.0.0",
"features": [
]
}

0 comments on commit a422ed3

Please sign in to comment.