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 = -311.9, z = -188.3 },
|
|
size = { x = 592.3, z = 533.2 },
|
|
born_pos = { x = 6.566, y = 0.715, z = 73.627 },
|
|
born_rot = { x = 16.833, y = 271.220, z = 357.591 },
|
|
die_y = -100,
|
|
city_id = 4,
|
|
vision_anchor = { x = -1000.0, z = -1000.0 }
|
|
}
|
|
|
|
-- 所有的区块
|
|
blocks = { 20160 }
|
|
|
|
-- 所有的区块范围坐标
|
|
block_rects = {
|
|
{ min = { x = -311.9, z = -188.3 }, max = { x = 280.4, z = 344.9 } }
|
|
}
|
|
|
|
-- Dummy Points
|
|
dummy_points = { }
|
|
|
|
-- Routes
|
|
routes_config = { } |