pixel-editor/js/_rectSelect.js
unsettledgames efaa8e3c34 Connected events to rect selection
_rectSelect.js now knows when the user started and finished drawing a rect and is able to edit a preview.
2020-03-04 14:36:40 +01:00

13 lines
238 B
JavaScript

var isRectSelecting = false;
function startRectSelection() {
console.log("Started selecting");
}
function updateRectSelection() {
console.log("Editing selecting");
}
function endRectSelection() {
console.log("Finished selecting");
}