The character displayed on the lobby screen can now be changed.

PlayerSetting_ChangeShowCard
This commit is contained in:
Kei-Luna
2026-04-26 14:33:41 +09:00
parent 6eb03c15e7
commit abb6b51dea
3 changed files with 55 additions and 0 deletions

View File

@@ -15,6 +15,7 @@ public class PlayerGameData : BaseDatabaseDataHelper
public long LastActiveTime { get; set; }
public Sex Gender { get; set; } = Sex.Female;
[SugarColumn(IsJson = true)] public List<PlayerAttr> Attrs { get; set; } = [];
[SugarColumn(IsJson = true)] public List<ulong> ShowItems { get; set; } = [];
public static PlayerGameData? GetPlayerByUid(long uid)
{