This commit is contained in:
aozhiwei 2023-03-30 20:30:10 +08:00
parent 8bd3fa65a0
commit 8ddc136531

View File

@ -814,18 +814,25 @@ void MapInstance::LoadHouse()
}
}
{
int box_tri_arr[8][3] = {
int box_tri_arr[12][3] = {
{0, 1, 2},
{0, 2, 3},
{0, 3, 2},
{0, 1, 2},
{0, 1, 2},
{0, 1, 5},
{0, 4, 5},
{0, 1, 2},
{0, 1, 2},
{0, 3, 7},
{0, 4, 7},
{6, 5, 4},
{6, 7, 4},
{6, 7, 3},
{6, 2, 3},
{6, 2, 1},
{6, 5, 1}
{0, 1, 2},
{0, 1, 2}
};
//求三角形min_y max_y
things_.reserve(1024 * 10);