mirror of
https://gitlab.com/YuukiPS/GC-Resources.git
synced 2025-04-29 09:35:48 +00:00
24 lines
514 B
Lua
24 lines
514 B
Lua
-- 地图配置
|
|
scene_config = {
|
|
begin_pos = { x = -254.7, z = -256.9 },
|
|
size = { x = 512.0, z = 512.0 },
|
|
born_pos = { x = -2.312, y = -58.335, z = 34.664 },
|
|
born_rot = { x = 0.000, y = 184.838, z = 0.000 },
|
|
die_y = -100,
|
|
city_id = 4,
|
|
vision_anchor = { x = -1000.0, z = -1000.0 }
|
|
}
|
|
|
|
-- 所有的区块
|
|
blocks = { 20153 }
|
|
|
|
-- 所有的区块范围坐标
|
|
block_rects = {
|
|
{ min = { x = -254.7, z = -256.9 }, max = { x = 257.3, z = 255.1 } }
|
|
}
|
|
|
|
-- Dummy Points
|
|
dummy_points = { }
|
|
|
|
-- Routes
|
|
routes_config = { } |