Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way to remove the applied shadow from Kinetic.Shape? unfortunately shape.setShadow(null) doesn't work.

share|improve this question
What happens if you use var s = shape.getShadow(); var l = shape.getLayer(); l.remove(s); ? – Jonke Dec 11 '12 at 7:51
@Jonke: I tied it but didn't work! – Atashbahar Dec 11 '12 at 22:20
can you make a small jsfiddle that reproduce your problem? or insert some code in you post? – Jonke Dec 12 '12 at 8:34
I took a quick look at the code behind and setShadow and I'm not sure butI think that the config object gets merged with whatever is already stored. Maybe one could manipulate the returned obj of shape.getShadow() before using setShadow and 'restore' it to the default, depending on how kineticjs merge function for config objects actually work. – Jonke Dec 13 '12 at 9:30
1  
I think it would be nice to have an easy way to remove the shadow from a shape. Something like shape.setShadow(null). – Atashbahar Dec 16 '12 at 0:37

1 Answer

up vote 1 down vote accepted

Set the shadow color's alpha component to 0 (e.g.):

shape.setShadow({color: 'rgba(80, 80, 80, 0)'})
share|improve this answer
It works but technically it doesn't remove the shadow. It just makes it transparent. But it solved my problem :) – Atashbahar Dec 12 '12 at 22:45
This can't be the only way? Is there no better way? – Eddie Dec 31 '12 at 16:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.