You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
Adding new wave video effect, which can be animated in a ton of ways to create lots of cool wave distortion effects.
This commit is contained in:
@@ -67,6 +67,9 @@ EffectBase* EffectInfo::CreateEffect(string effect_type) {
|
||||
|
||||
else if (effect_type == "Shift")
|
||||
return new Shift();
|
||||
|
||||
else if (effect_type == "Wave")
|
||||
return new Wave();
|
||||
}
|
||||
|
||||
// Generate Json::JsonValue for this object
|
||||
@@ -85,6 +88,7 @@ Json::Value EffectInfo::JsonValue() {
|
||||
root.append(Negate().JsonInfo());
|
||||
root.append(Saturation().JsonInfo());
|
||||
root.append(Shift().JsonInfo());
|
||||
root.append(Wave().JsonInfo());
|
||||
|
||||
// return JsonValue
|
||||
return root;
|
||||
|
||||
Reference in New Issue
Block a user