This commit is contained in:
2025-10-14 09:17:56 +08:00
parent 0d0465fad3
commit 6eb4d6a2f9
19 changed files with 854 additions and 240 deletions

View File

@@ -210,13 +210,9 @@ class Rindro_LukePlayerInteractiveC extends LenheartNewUI_Windows {
//绘制角色名
L_sq_DrawCode(InfoObj.Name, X + 61 - LenheartTextClass.GetStringLength(InfoObj.Name) / 2, Y + 4, sq_RGBA(169, 255, 171, 255), 0, 1);
//绘制头像
foreach(AvatarObj in InfoObj.EquVos) {
local AXpos = AvatarObj.F[0][2] + X + OffsetArr[InfoObj.Job][0] - 40;
local AYpos = AvatarObj.F[0][3] + Y + OffsetArr[InfoObj.Job][1];
setClip(AXpos + OffsetArr[InfoObj.Job][2], AYpos + OffsetArr[InfoObj.Job][3], AXpos + OffsetArr[InfoObj.Job][2] + 22, AYpos + OffsetArr[InfoObj.Job][3] + 18); //开始裁切
L_sq_DrawImg("character/" + AvatarObj.B + ".img", AvatarObj.F[0][0], AXpos, AYpos);
releaseClip(); //裁切结束
}
local AXpos = X;
local AYpos = Y + 1;
InfoObj.EquVos.DrawFace(AXpos, AYpos);
LenheartNewUI_Windows.Show(obj);
}