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 | ColorShift::ColorShift() : red_x(0.0), red_y(0.0), green_x(0.0), green_y(0.0), blue_x(0.0), blue_y(0.0), alpha_x(0.0), alpha_y(0.0) { |
| 20 | // Init effect properties |
| 21 | init_effect_details(); |
| 22 | } |
| 23 | |
| 24 | // Default constructor |
| 25 | ColorShift::ColorShift(Keyframe red_x, Keyframe red_y, Keyframe green_x, Keyframe green_y, Keyframe blue_x, Keyframe blue_y, Keyframe alpha_x, Keyframe alpha_y) : |
nothing calls this directly
no outgoing calls
no test coverage detected