Better default brush

This commit is contained in:
Devine Lu Linvega 2017-01-02 17:36:22 -07:00
parent bf2cc0cda3
commit 550b31e8b7
2 changed files with 3 additions and 3 deletions

View File

@ -36,4 +36,6 @@ commander.query("# "+starting_canvas.render());
commander.query("# layer=background");
commander.query("# #efefef");
commander.query("# layer=main");
commander.query("> 1 0,0 #000000");
commander.query("> 1 0,0 #000000");
commander.query("> 1 1,0 #000000");
commander.query("> 1 0,1 #000000");

View File

@ -22,8 +22,6 @@ function Pointer(offset = new Position(), color = new Color('000000'))
if(!this.position_prev){this.position_prev = this.position(); }
var position = this.position();
if(position.distance_to(this.position_prev) < 2){ return; } // Quickfix against stairs
this.distance += position.distance_to(this.position_prev);