Removed old getVoxelAt()/setVoxelAt() functions. they've been flagged as deprecated for a while now, and are replaced by just getVoxel()/setVoxel().
This commit is contained in:
@ -92,7 +92,7 @@ void TestAStarPathfinder::testExecute()
|
||||
for(int x = 0; x < uVolumeSideLength; x++)
|
||||
{
|
||||
uint8_t solidVoxel(0);
|
||||
volData.setVoxelAt(x,y,z,solidVoxel);
|
||||
volData.setVoxel(x,y,z,solidVoxel);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -105,7 +105,7 @@ void TestAStarPathfinder::testExecute()
|
||||
for(int x = 4; x < 12; x++)
|
||||
{
|
||||
uint8_t solidVoxel(1);
|
||||
volData.setVoxelAt(x,y,z,solidVoxel);
|
||||
volData.setVoxel(x,y,z,solidVoxel);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user