Demorei pra caramba, e ainda fiz malfeito
// shift + 10; alt - 5; tamanho mínimo = 10; tamanho máximo = 40;
var radius = 10;
function leftClick(event) {
var x = event.pageX - canvas.offsetLeft;
var y = event.pageY - canvas.offsetTop;
if(event.shiftKey) {
radius = radius + 10;
if(radius >= 40) {
radius = 40;
}
}
if(event.altKey) {
radius = radius - 5;
if(radius <= 10) {
radius = 10;
}
}
drawDrop(x, y, radius)
}
Caminho de flores não floresceu pro meu lado não...