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 | Shift::Shift() : x(0.0), y(0.0) { |
| 20 | // Init effect properties |
| 21 | init_effect_details(); |
| 22 | } |
| 23 | |
| 24 | // Default constructor |
| 25 | Shift::Shift(Keyframe x, Keyframe y) : x(x), y(y) |
no outgoing calls
no test coverage detected