feat(ui/hud): barras EXP/JOB em % via exp-to-next do snapshot

FZMMOAttributesSnapshot ganha BaseExpToNext/JobExpToNext espelhando o wire do
server. ApplySnapshot liga ExpBar/JobBar pelo ratio (exp / exp-to-next) e os
readouts mostram a porcentagem (ou "MAX" no cap).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-28 03:58:33 -03:00
parent 484c8d5d4f
commit ede49c1777
3 changed files with 39 additions and 13 deletions

View File

@@ -19,9 +19,11 @@ namespace
S.EntityId = P.EntityId;
S.ClassId = P.ClassId;
S.BaseLevel = P.BaseLevel;
S.BaseExp = P.BaseExp;
S.BaseExp = P.BaseExp;
S.BaseExpToNext = P.BaseExpToNext;
S.JobLevel = P.JobLevel;
S.JobExp = P.JobExp;
S.JobExp = P.JobExp;
S.JobExpToNext = P.JobExpToNext;
S.Str = P.Str;
S.Agi = P.Agi;
S.Vit = P.Vit;