|  |  | 
 |  |  |     const { width, height } = sprite; | 
 |  |  |     const scale = sprite.scale.x; | 
 |  |  |     const sideLen = (Math.max(width, height) + 10) * scale; | 
 |  |  |     const color = 0x273c75; | 
 |  |  |     const color = app.renderer.backgroundColor === '#f1f2f6' ? 0x273c75 : 0xffffff; | 
 |  |  |  | 
 |  |  |     effectHalfCircle = new PIXI.Graphics(); | 
 |  |  |     effectHalfCircle.beginFill(color); | 
 |  |  | 
 |  |  |     effectHalfCircle.scale.set(1 / scale); | 
 |  |  |  | 
 |  |  |     effectRectangle = new PIXI.Graphics(); | 
 |  |  |     effectRectangle.lineStyle(2 * scale, color, 1); | 
 |  |  |     effectRectangle.lineStyle(5 * scale, color, 1); | 
 |  |  |     effectRectangle.drawRoundedRect(0, 0, sideLen, sideLen, 16 * scale); | 
 |  |  |     effectRectangle.endFill(); | 
 |  |  |     effectRectangle.mask = effectHalfCircle; |