How to draw shadow only in right and bottom side of object in createjs. there is no shadow over the object or on top and left side.
the shadow contains only 4 parameters
1. color of shadow
2. x
3. y
4. blur effect
but it didn't tell anything about 4 different sides.
var box = createjs.Shape();
box.shadow = new createjs.shadow('#000',4,4,5);
the above code generates some blur portion over top and left part of object.