恢复drawTip

This commit is contained in:
unanmed 2023-04-26 12:51:09 +08:00
parent 1552fb7dcb
commit 34154e77c1

View File

@ -942,19 +942,40 @@ ui.prototype.clearUI = function () {
////// 左上角绘制一段提示 ////// ////// 左上角绘制一段提示 //////
ui.prototype.drawTip = function (text, id, frame) { ui.prototype.drawTip = function (text, id, frame) {
let t = text = core.replaceText(text) || '';
text + var realText = this._getRealContent(text);
' [' + var one = {
core.status.hero.loc.x + text: text,
',' + textX: 21,
core.status.hero.loc.y + width: 26 + core.calWidth('data', realText, '16px Arial'),
',' + opacity: 0.1,
core.status.floorId + stage: 1,
'] '; frame: frame || 0,
if (core.status.floorId === 'tower6') time: 0
t += core.searchBlockWithFilter(v => v.event.cls === 'enemys').length; };
if (id != null) {
console.log(t); var info = core.getBlockInfo(id);
if (info == null || !info.image || info.bigImage) {
// 检查状态栏图标
if (core.statusBar.icons[id] instanceof Image) {
info = {
image: core.statusBar.icons[id],
posX: 0,
posY: 0,
height: 32
};
} else info = null;
}
if (info != null) {
one.image = info.image;
one.posX = info.posX;
one.posY = info.posY;
one.height = info.height;
one.textX += 24;
one.width += 24;
}
}
core.animateFrame.tip = one;
}; };
ui.prototype._drawTip_drawOne = function (tip) { ui.prototype._drawTip_drawOne = function (tip) {