laya-coreui-es
Version:
laya核心库、ui库es版本,剔除了媒体、TTF等功能。基于 LayaAir-release_2.12.0 修改
29 lines (28 loc) • 818 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.HTMLExtendStyle = void 0;
const Pool_1 = require("../../utils/Pool");
class HTMLExtendStyle {
constructor() {
this.reset();
}
reset() {
this.stroke = 0;
this.strokeColor = "#000000";
this.leading = 0;
this.lineHeight = 0;
this.letterSpacing = 0;
this.href = null;
return this;
}
recover() {
if (this == HTMLExtendStyle.EMPTY)
return;
Pool_1.Pool.recover("HTMLExtendStyle", this.reset());
}
static create() {
return Pool_1.Pool.getItemByClass("HTMLExtendStyle", HTMLExtendStyle);
}
}
exports.HTMLExtendStyle = HTMLExtendStyle;
HTMLExtendStyle.EMPTY = new HTMLExtendStyle();