地图尺寸改小,同步位置放大1000倍取整

This commit is contained in:
janing
2025-12-18 13:43:16 +08:00
parent e677b1e11b
commit 637978357f
11 changed files with 77 additions and 23 deletions

View File

@@ -2,9 +2,9 @@
* 移动请求消息
*/
export interface MsgReqMove {
/** X坐标 */
/** X坐标放大1000倍后取整服务器内部除以1000作为实际坐标 */
x: number;
/** Y坐标 */
/** Y坐标放大1000倍后取整服务器内部除以1000作为实际坐标 */
y: number;
}