| | |
| | | |
| | | let app = null; |
| | | let mapContainer = null; |
| | | let notify = null; |
| | | let effectTick, effectHalfCircle, effectRectangle; |
| | | |
| | | export function syncApp(param) { |
| | |
| | | |
| | | export function syncMapContainer(param) { |
| | | mapContainer = param; |
| | | } |
| | | |
| | | export function syncNotify(param) { |
| | | notify = param; |
| | | } |
| | | |
| | | export function getMapContainer() { |
| | |
| | | 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; |
| | |
| | | |
| | | new TWEEDLE.Tween(mapContainer.position).easing(TWEEDLE.Easing.Quadratic.Out) |
| | | .to(targetPos, 500).start(); |
| | | } |
| | | |
| | | export const mapNotify = (msg) => { |
| | | notify.open({ |
| | | description: msg, |
| | | duration: 1.5, |
| | | style: { width: 300 }, |
| | | placement: 'bottom', |
| | | closeIcon: false, |
| | | onClick: () => { } |
| | | }); |
| | | } |