mirror of
https://github.com/lospec/pixel-editor.git
synced 2023-08-10 21:12:51 +03:00
Reduced tool size
Moved tool size buttons on the right, started lasso tool
This commit is contained in:
29
js/tools/LassoSelectionTool.js
Normal file
29
js/tools/LassoSelectionTool.js
Normal file
@ -0,0 +1,29 @@
|
||||
class LassoSelectionTool extends SelectionTool {
|
||||
constructor (name, options, switchFunc, moveTool) {
|
||||
|
||||
}
|
||||
|
||||
onStart(mousePos) {
|
||||
super.onStart(mousePos);
|
||||
}
|
||||
|
||||
onDrag(mousePos) {
|
||||
super.onDrag(mousePos);
|
||||
}
|
||||
|
||||
onEnd(mousePos) {
|
||||
super.onEnd(mousePos);
|
||||
}
|
||||
|
||||
onSelect(mousePos) {
|
||||
super.onSelect(mousePos);
|
||||
}
|
||||
|
||||
onDeselect(mousePos) {
|
||||
super.onDeselect(mousePos);
|
||||
}
|
||||
|
||||
drawSelection(mousePos) {
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user