We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 95651fb + 92b6251 commit ed1bee3Copy full SHA for ed1bee3
src/Clip.cpp
@@ -121,12 +121,8 @@ void Clip::init_reader_settings() {
121
122
// Init reader's rotation (if any)
123
void Clip::init_reader_rotation() {
124
- // Only init rotation from reader when needed
125
- if (rotation.GetCount() > 1)
126
- // Do nothing if more than 1 rotation Point
127
- return;
128
- else if (rotation.GetCount() == 1 && rotation.GetValue(1) != 0.0)
129
- // Do nothing if 1 Point, and it's not the default value
+ // Dont init rotation if clip has keyframes
+ if (rotation.GetCount() > 0)
130
return;
131
132
// Init rotation
0 commit comments