Pretty solid build

This commit is contained in:
Devine Lu Linvega
2017-11-15 19:13:29 +13:00
parent aa64d70870
commit 516a91bfc5
8 changed files with 31 additions and 73 deletions

View File

@@ -2,7 +2,7 @@ function Brush()
{
Module.call(this,"brush");
this.settings = {size:4,color:"#000",opacity:1.0};
this.settings = {size:4,color:"#000"};
this.pointers = [
new Pointer({offset:{x:0,y:0}}),

View File

@@ -42,8 +42,8 @@ function Frame()
});
this.methods.inspect = new Method("inspect","","View canvas details",function(q){
ronin.layers.guide.inspect = ronin.layers.guide.inspect ? false : true;
ronin.layers.guide.draw();
ronin.guide.inspect = ronin.guide.inspect ? false : true;
ronin.guide.draw();
});
this.resize_to = function(size)