|
@@ -63,8 +63,6 @@ export class SPlanEquipment extends SBaseIconTextEdit {
|
|
|
this._formula = val;
|
|
|
try {
|
|
|
const textList = JSON.parse(this._formula);
|
|
|
- const font = this.textItemList[0]?.font ? this.textItemList[0]?.font : new SFont("sans-serif", 12);
|
|
|
- const color = this.textItemList[0]?.color ? this.textItemList[0]?.color : new SColor("#1F2429");
|
|
|
if (this.scene) {
|
|
|
this.textItemList.forEach((textItem) => {
|
|
|
this.scene.removeItem(textItem);
|
|
@@ -86,8 +84,8 @@ export class SPlanEquipment extends SBaseIconTextEdit {
|
|
|
// }
|
|
|
// TODO: obj.moveTo(this.img.width * 0.5, -(this.font.size * 1.25 * 0.5) + (index * this.font.size) - (textList.length - 1) * 0.5 * this.font.size);
|
|
|
obj.moveTo(this.img.width * 0.5, this.font.size * (index - 0.125 - 0.5 * textList.length));
|
|
|
- obj.font = font;
|
|
|
- obj.color = color;
|
|
|
+ obj.font = this.font;
|
|
|
+ obj.color = this.color;
|
|
|
obj.isTransform = false;
|
|
|
obj.showSelect = false;
|
|
|
textItemList.push(obj);
|