diff options
| author | bobzel <zzzman@gmail.com> | 2023-11-10 18:41:02 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-11-10 18:41:02 -0500 |
| commit | 87a641981ff1b8a0f6fba043f47ebea64b5231c3 (patch) | |
| tree | 65194bc54e832bd3620a89f06bb870b791ea9f23 /src/client/views/animationtimeline | |
| parent | d460d2ec856c9fc13789e151c9738f3345e95b64 (diff) | |
fixed animation timeline to not fade in/out the collection. fixed keyframe animator to interpolate colors.
Diffstat (limited to 'src/client/views/animationtimeline')
| -rw-r--r-- | src/client/views/animationtimeline/Track.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/client/views/animationtimeline/Track.tsx b/src/client/views/animationtimeline/Track.tsx index f36b5ade8..d959241d0 100644 --- a/src/client/views/animationtimeline/Track.tsx +++ b/src/client/views/animationtimeline/Track.tsx @@ -252,6 +252,9 @@ export class Track extends React.Component<IProps> { @action private applyKeys = (kf: Doc) => { this.primitiveWhitelist.forEach(key => { + if (key === 'opacity' && this.props.animatedDoc === this.props.collection) { + return; + } if (!kf[key]) { this.props.animatedDoc[key] = undefined; } else { |
