Blank constructor, useful when using Json to load the effect properties
| 23 | |
| 24 | /// Blank constructor, useful when using Json to load the effect properties |
| 25 | Pixelate::Pixelate() : pixelization(0.5), left(0.0), top(0.0), right(0.0), bottom(0.0), |
| 26 | mask_mode(PIXELATE_MASK_LIMIT_TO_AREA) { |
| 27 | // Init effect properties |
| 28 | init_effect_details(); |
| 29 | } |
| 30 | |
| 31 | // Default constructor |
| 32 | Pixelate::Pixelate(Keyframe pixelization, Keyframe left, Keyframe top, Keyframe right, Keyframe bottom) : |
nothing calls this directly
no outgoing calls
no test coverage detected