Blank constructor, useful when using Json to load the effect properties
| 17 | |
| 18 | /// Blank constructor, useful when using Json to load the effect properties |
| 19 | Outline::Outline() : width(0.0) { |
| 20 | // Init effect properties |
| 21 | color = Color("#FFFFFF"); |
| 22 | init_effect_details(); |
| 23 | } |
| 24 | |
| 25 | // Default constructor |
| 26 | Outline::Outline(Keyframe width, Color color) : |