I'm trying to trigger the creation of a new Kinetic shape (not a clone) through the click of another. Any help would be greatly appreciated as I can't seem to find an answer. I've tried the following without any luck:
var sq1 = new Kinetic.Rect({
x: 25,
y: 400,
width: 200,
height: 200,
fill: '#000000',
draggable: true
});
var $sq1 = sq1
$sq1.on( "click", function() {
var sq1copy = new Kinetic.Rect({
x: 45,
y: 450,
width: 100,
height: 100,
fill: '#FFFFFF',
draggable: true
});
});
You've almost got it...just be sure to add the new sq1 to the layer and also
layer.draw