mirror of
https://gitlab.com/YuukiPS/GC-Resources.git
synced 2025-04-28 09:05:26 +00:00
24 lines
535 B
Lua
24 lines
535 B
Lua
-- 地图配置
|
|
scene_config = {
|
|
begin_pos = { x = -454.6, z = -354.8 },
|
|
size = { x = 738.3, z = 817.5 },
|
|
born_pos = { x = -22.922, y = 1.846, z = 134.098 },
|
|
born_rot = { x = 0.000, y = 177.146, z = 0.000 },
|
|
die_y = -15,
|
|
city_id = 2,
|
|
vision_anchor = { x = -454.6, z = -354.8 }
|
|
}
|
|
|
|
-- 所有的区块
|
|
blocks = { 20102 }
|
|
|
|
-- 所有的区块范围坐标
|
|
block_rects = {
|
|
{ min = { x = -454.6, z = -354.8 }, max = { x = 283.7, z = 462.7 } }
|
|
}
|
|
|
|
-- Dummy Points
|
|
dummy_points = { "dummy_points" }
|
|
|
|
-- Routes
|
|
routes_config = { "routes" } |