GlowFilter方法会导致文字发生位置偏移
text1.text = "第一行文字";
text1.fontSize = 40;
text1.color = "#ffffff";
text1.pos(100, 100);
this.owner.addChild(text1);
// 2. 第二行文字(使用 Text)
let text2: Laya.Text = new Laya.Text();
text2.text = "第二行文字";
text2.fontSize = 40;
text2.color = "#ffffff";
text2.pos(100, 200); // 放在第一行下方
this.owner.addChild(text2);
// 3. 为第二行文字添加 GlowFilter
// 参数: (颜色, 模糊大小, X偏移, Y偏移)
let glowFilter: Laya.GlowFilter = new Laya.GlowFilter("#ff0000", 4, 4, 0);
text2.filters = [glowFilter];

下面图片是结果。这是什么问题