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 | Wave::Wave() : wavelength(0.06), amplitude(0.3), multiplier(0.2), shift_x(0.0), speed_y(0.2) { |
| 20 | // Init effect properties |
| 21 | init_effect_details(); |
| 22 | } |
| 23 | |
| 24 | // Default constructor |
| 25 | Wave::Wave(Keyframe wavelength, Keyframe amplitude, Keyframe multiplier, Keyframe shift_x, Keyframe speed_y) |
nothing calls this directly
no outgoing calls
no test coverage detected