1
0
mirror of synced 2024-11-24 15:40:22 +01:00

Default skin Dan song select assets

This commit is contained in:
0aubsq 2022-02-09 19:25:59 +01:00
parent 51d136f782
commit f61beac021
15 changed files with 1 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 356 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 196 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 183 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -16,7 +16,7 @@ namespace TJAPlayer3
{
public static int tToArgb(int r, int g, int b)
{
return (r * 65536 + g * 256 + b);
return (b * 65536 + g * 256 + r);
}
// コンストラクタ
@ -29,7 +29,6 @@ namespace TJAPlayer3
private readonly Dictionary<string, Color4> tTagDict = new Dictionary<string, Color4>
{
["アニメ"] = new Color4(tToArgb(253, 145, 208)),
["ナムコオリジナル"] = new Color4(tToArgb(255, 112, 40)),
["クラシック"] = new Color4(tToArgb(221, 172, 4)),
["バラエティ"] = new Color4(tToArgb(32, 218, 56)),
["どうよう"] = new Color4(tToArgb(254, 191, 3)),