Paper.js: Can't Set Fillcolor Of A Symbol Instance
I'm new to paper.js. For this project, I need a shape that will be used in many instances (with different fill colors), so it's apparently better to use a symbol (instead of using
Solution 1:
Answered by Jonathan Puckey, of the paper.js team:
This is by design. You cannot change the visual properties of an instance of a Symbol. To change the color of the item, you can create multiple copies of the path by using
path.clone()
.
Post a Comment for "Paper.js: Can't Set Fillcolor Of A Symbol Instance"