From 5c49f6617b2a0a31f44d827151fde34ecb410219 Mon Sep 17 00:00:00 2001 From: unanmed <1319491857@qq.com> Date: Fri, 26 Sep 2025 11:34:43 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E5=9C=B0=E5=9B=BE=E6=A0=BC=E5=AD=90?= =?UTF-8?q?=E5=AE=BD=E9=AB=98=E6=94=B9=E5=9B=9E=2015?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages-user/client-modules/src/render/shared.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages-user/client-modules/src/render/shared.ts b/packages-user/client-modules/src/render/shared.ts index 0585d7f..264dbd4 100644 --- a/packages-user/client-modules/src/render/shared.ts +++ b/packages-user/client-modules/src/render/shared.ts @@ -7,9 +7,9 @@ import { ElementLocator } from '@motajs/render-core'; /** 每个格子的宽高 */ export const CELL_SIZE = 32; /** 地图格子宽度,此处仅影响画面,不影响游戏内逻辑,游戏内逻辑地图大小请在 core.js 中修改 */ -export const MAP_BLOCK_WIDTH = 13; +export const MAP_BLOCK_WIDTH = 15; /** 地图格子高度,此处仅影响画面,不影响游戏内逻辑,游戏内逻辑地图大小请在 core.js 中修改 */ -export const MAP_BLOCK_HEIGHT = 13; +export const MAP_BLOCK_HEIGHT = 15; /** 地图像素宽度 */ export const MAP_WIDTH = CELL_SIZE * MAP_BLOCK_WIDTH; /** 地图像素高度 */