Update terrain material layer tests with expanded sample counts and paint weights

This commit is contained in:
2026-05-13 00:51:18 +02:00
parent 1f1af492f6
commit 5a136a946b

View File

@@ -149,8 +149,21 @@ describe("terrain material layers", () => {
createTerrain({ createTerrain({
id: "terrain-remove-layer", id: "terrain-remove-layer",
sampleCountX: 2, sampleCountX: 2,
sampleCountZ: 1, sampleCountZ: 2,
paintWeights: [0.2, 0.3, 0.1, 0.4, 0.1, 0] paintWeights: [
0.2,
0.3,
0.1,
0.4,
0.1,
0,
0,
0.5,
0,
0.25,
0.25,
0.25
]
}), }),
"fifth-material" "fifth-material"
); );
@@ -158,7 +171,20 @@ describe("terrain material layers", () => {
const nextTerrain = createTerrainWithRemovedLayer(terrain, 2); const nextTerrain = createTerrainWithRemovedLayer(terrain, 2);
expect(nextTerrain.layers).toHaveLength(4); expect(nextTerrain.layers).toHaveLength(4);
expect(nextTerrain.paintWeights).toEqual([0.2, 0.1, 0, 0.4, 0, 0]); expect(nextTerrain.paintWeights).toEqual([
0.2,
0.1,
0,
0.4,
0,
0,
0,
0,
0,
0.25,
0.25,
0
]);
}); });
}); });