mirror of
https://gitlab.com/YuukiPS/GC-Resources.git
synced 2025-04-28 09:05:26 +00:00
24 lines
503 B
Lua
24 lines
503 B
Lua
-- 地图配置
|
|
scene_config = {
|
|
begin_pos = { x = 384.5, z = 28.3 },
|
|
size = { x = 175.7, z = 242.6 },
|
|
born_pos = { x = 439.836, y = -8.840, z = 122.207 },
|
|
born_rot = { x = 0.000, y = 91.211, z = 0.000 },
|
|
die_y = -100,
|
|
city_id = 1,
|
|
vision_anchor = { x = 384.5, z = 28.3 }
|
|
}
|
|
|
|
-- 所有的区块
|
|
blocks = { 20015 }
|
|
|
|
-- 所有的区块范围坐标
|
|
block_rects = {
|
|
{ min = { x = 384.5, z = 28.3 }, max = { x = 560.1, z = 270.9 } }
|
|
}
|
|
|
|
-- Dummy Points
|
|
dummy_points = { }
|
|
|
|
-- Routes
|
|
routes_config = { } |