修复背景颜色未设置时,返回默认颜色的代码错误

rename BgSetting_Color.cs->UI_BgSettingItem_Color.cs
This commit is contained in:
ALIENJACK\alien 2024-11-21 17:03:06 +08:00
parent 34e9090446
commit 912ad6b045
3 changed files with 5 additions and 2 deletions

View File

@ -19,7 +19,7 @@ namespace AxibugEmuOnline.Client
var color1 = PlayerPrefs.GetString($"{nameof(BgColorSettings)}.{nameof(CurrentColor)}.{nameof(CurrentColor.color1)}", null);
var color2 = PlayerPrefs.GetString($"{nameof(BgColorSettings)}.{nameof(CurrentColor)}.{nameof(CurrentColor.color2)}", null);
var name = PlayerPrefs.GetString($"{nameof(BgColorSettings)}.{nameof(CurrentColor)}.{nameof(CurrentColor.Name)}", null);
if (color1 == null || color2 == null || name == null)
if (string.IsNullOrWhiteSpace(color1) || string.IsNullOrWhiteSpace(color2) || string.IsNullOrWhiteSpace(name))
return DEFAULT;
else
return new XMBColor(name, color1, color2);

View File

@ -8,7 +8,10 @@ using UnityEngine;
namespace AxibugEmuOnline.Client
{
public class BgSetting_Color : MenuItem, IVirtualItem
/// <summary>
/// ±³¾°ÑÕÉ«ÉèÖÃUI
/// </summary>
public class UI_BgSettingItem_Color : MenuItem, IVirtualItem
{
public int Index { get; set; }
public BgColorSettings Datacontext { get; private set; }