mirror of
https://gitlab.com/YuukiPS/GC-Resources.git
synced 2025-04-28 09:05:26 +00:00
30 lines
914 B
Lua
30 lines
914 B
Lua
-- 地图配置
|
|
scene_config = {
|
|
begin_pos = { x = 0.0, z = 0.0 },
|
|
size = { x = 1000.0, z = 1000.0 },
|
|
born_pos = { x = 518.448, y = 80.464, z = 451.793 },
|
|
born_rot = { x = 0.000, y = 0.000, z = 0.000 },
|
|
born_point_list = {
|
|
{ pos = { x = 530.743, y = 80.420, z = 463.127 }, rot = { x = 0.000, y = 241.060, z = 0.000 } },
|
|
{ pos = { x = 524.458, y = 80.420, z = 463.127 }, rot = { x = 0.000, y = 147.860, z = 0.000 } },
|
|
{ pos = { x = 530.743, y = 80.420, z = 458.007 }, rot = { x = 0.000, y = -61.410, z = 0.000 } },
|
|
{ pos = { x = 524.179, y = 80.420, z = 457.513 }, rot = { x = 0.000, y = 47.220, z = 0.000 } }
|
|
},
|
|
die_y = 45,
|
|
city_id = 2,
|
|
vision_anchor = { x = 0.0, z = 0.0 }
|
|
}
|
|
|
|
-- 所有的区块
|
|
blocks = { 20124 }
|
|
|
|
-- 所有的区块范围坐标
|
|
block_rects = {
|
|
{ min = { x = 0.0, z = 0.0 }, max = { x = 1000.0, z = 1000.0 } }
|
|
}
|
|
|
|
-- Dummy Points
|
|
dummy_points = { }
|
|
|
|
-- Routes
|
|
routes_config = { } |