From ffbe884e10222d441bf21c397730e93e00dbae38 Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@163.com> Date: 星期三, 09 十月 2024 12:58:01 +0800 Subject: [PATCH] # --- zy-acs-flow/src/map/player.js | 11 +++++++---- 1 files changed, 7 insertions(+), 4 deletions(-) diff --git a/zy-acs-flow/src/map/player.js b/zy-acs-flow/src/map/player.js index ddba530..2cb44a1 100644 --- a/zy-acs-flow/src/map/player.js +++ b/zy-acs-flow/src/map/player.js @@ -23,9 +23,12 @@ }); } - resize() { - // 濡傛灉闇�瑕佸湪绐楀彛澶у皬鏀瑰彉鏃惰皟鏁村唴瀹癸紝鍙互鍦ㄨ繖閲屽鐞� - // 鐢变簬璁剧疆浜� resizeTo锛孭IXI.Application 浼氳嚜鍔ㄨ皟鏁寸敾甯冨昂瀵� + resize(width, height) { + this.app.renderer.resize(width, height); + this.mapContainer.children.forEach((child) => { + child.x = width / 2; + child.y = height / 2; + }); } destroy() { @@ -38,7 +41,7 @@ const app = new PIXI.Application({ background: themeMode === 'dark' ? '#2f3542' : '#f1f2f6', antialias: true, - resizeTo: dom, + // resizeTo: dom, }) app.stage.eventMode = 'static'; app.stage.hitArea = app.screen; -- Gitblit v1.9.1