tool to delete all of a specific element
This commit is contained in:
parent
264fe20d0d
commit
073ae100a9
|
|
@ -88,3 +88,20 @@ elements.rg3 = {
|
||||||
excludeRandom: true,
|
excludeRandom: true,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
elements.daoe = {
|
||||||
|
name: "delete all of element",
|
||||||
|
color: ["#a7a7a7", "#a7a7a7", "#a7a7a7", "#a7a7a7", "#000000", "#000000", "#000000", "#000000"],
|
||||||
|
tool: function(pixel) {
|
||||||
|
for (var i = 1; i < width; i++) {
|
||||||
|
for (var j = 1; j < height; j++) {
|
||||||
|
if (!isEmpty(i,j)) {
|
||||||
|
if(pixelMap[i][j].element == pixel.element) {
|
||||||
|
deletePixel(i,j)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
category: "tools",
|
||||||
|
excludeRandom: true,
|
||||||
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue