Explorar el Código

CTRLPainter now has VERY rough scaling using mouse wheel

dev-tmpl
Bryan Miller hace 5 años
padre
commit
f5b3d77a03
Se han modificado 1 ficheros con 11 adiciones y 0 borrados
  1. +11
    -0
      app/js/ctrls/CTRLPainter.js

+ 11
- 0
app/js/ctrls/CTRLPainter.js Ver fichero

@@ -104,6 +104,17 @@ class CTRLPainter {
this.render();
}).bind(this);
input.listen("shift+mouseleft+mousemove", handle_offset);

var handle_scale = (function(e){
if (e.delta < 0){
this.scale_down();
} else if (e.delta > 0){
this.scale_up();
}
if (e.delta !== 0)
this.render();
}).bind(this);
input.listen("wheel", handle_scale);
}



Cargando…
Cancelar
Guardar