Parcourir la source

CTRLPainter now has VERY rough scaling using mouse wheel

dev-tmpl
Bryan Miller il y a 5 ans
Parent
révision
f5b3d77a03
1 fichiers modifiés avec 11 ajouts et 0 suppressions
  1. +11
    -0
      app/js/ctrls/CTRLPainter.js

+ 11
- 0
app/js/ctrls/CTRLPainter.js Voir le fichier

@@ -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);
}



Chargement…
Annuler
Enregistrer