Skip to content

Commit

Permalink
Fix custom bg colorless side+0.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
yojohanshinwataikei committed Jul 1, 2023
1 parent 7a347fb commit e5f2440
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Assets/Misc/BuildTimestamp.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
638237569902942371
638238028802695896
5 changes: 5 additions & 0 deletions Assets/Misc/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
0.4.7

- 修复了自定义背景无法正确选择无色侧的问题

---
0.4.6

- 修复了新创建的 Arc 的 Effect 参数错误的问题
Expand Down
2 changes: 1 addition & 1 deletion Assets/Scripts/Compose/Dialog/AdeSkinDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ public void SelectBackground(string name, bool external)

public void SelectSide(int id)
{
Side side = id == 0 ? Side.Light : id == 2 ? Side.Light : Side.Conflict;
Side side = id == 0 ? Side.Light : id == 2 ? Side.Colorless : Side.Conflict;
preference.SkinSide = side;
ApplyThemeSideSkin();
ApplyNoteSideSkin();
Expand Down
2 changes: 1 addition & 1 deletion ProjectSettings/ProjectSettings.asset
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ PlayerSettings:
16:10: 0
16:9: 1
Others: 0
bundleVersion: 0.4.6
bundleVersion: 0.4.7
preloadedAssets:
- {fileID: 4800000, guid: bb26ede1beb997943a7d6295fbf075d4, type: 3}
- {fileID: 4800000, guid: 1e340182228616b4ca7dad1e80f4d319, type: 3}
Expand Down

0 comments on commit e5f2440

Please sign in to comment.