Fixed issue with export

This commit is contained in:
Devine Lu Linvega 2017-11-21 12:39:41 +13:00
parent 19ff6ddcaa
commit 65cebd67ee
6 changed files with 11 additions and 3 deletions

View File

@ -15,6 +15,8 @@ function Cursor(rune)
{
this.clear();
if(!pos){ return; }
var ctx = this.context();
var radius = ronin.cursor.size;

View File

@ -58,6 +58,9 @@ function Hint()
if(ac.length > 0){
this.el.innerHTML = this.pad(ronin.commander.input_el.value)+"<span class='autocomplete'>"+ac[0]+"</span> > Press tab to autocomplete."
}
else if(ronin.commander.input_el.value == "~"){
this.el.innerHTML = this.pad(ronin.commander.input_el.value)+" > Select a color."
}
else{
this.el.innerHTML = this.pad(ronin.commander.input_el.value)+" > Unknown command."
}

View File

@ -35,6 +35,7 @@ function Keyboard()
if(e.key == "tab" || e.keyCode == 9){
e.preventDefault();
ronin.cursor.update();
ronin.commander.autocomplete();
return;
}

View File

@ -43,7 +43,6 @@ function Guide()
if(!show){ return; }
var originalData = ronin.render.context().getImageData(0, 0, ronin.frame.width*2, ronin.frame.height*2);
var data = originalData.data;
for(var i = 0; i < data.length; i += 4) {
var x = i % (ronin.frame.width*8)
var y = i / (ronin.frame.width*32)
@ -52,7 +51,6 @@ function Guide()
data[i + 2] = y;
data[i + 3] = 255;
}
ronin.layers.guide.context().putImageData(originalData, 0, 0);
}

View File

@ -24,6 +24,10 @@ function Brush()
ronin.hint.update();
})
this.methods.set_color = new Method("set_color","#ff0033","Set color",function(q){
ronin.cursor.color = q;
})
this.absolute_thickness = 0;
this.thickness = function(line)

View File

@ -15,7 +15,7 @@ function Frame()
this.methods.rescale = new Method("rescale","0.5","Rescale canvas to float.",function(p){
var new_size = {width:ronin.frame.width * p,height:ronin.frame.height * p};
ronin.render.context().drawImage(ronin.render.to_img(),0,0,new_size.width * 2,new_size.height * 2);
setTimeout(ronin.frame.methods.resize.run(new_size),2000)
setTimeout(function(){ ronin.frame.methods.resize.run(new_size);},1000)
});
this.methods.crop = new Method("crop","X,Y|WxH","Crop canvas to rect.",function(p){