Skip to content

Commit

Permalink
transparent black on positionRemap in clip and layers
Browse files Browse the repository at this point in the history
  • Loading branch information
benkuper committed Oct 20, 2023
1 parent b3babd2 commit 9eaf54c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/Sequence/layers/Block/LightBlockClip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ Array<Colour> LightBlockClip::getColors(Prop* p, double absoluteTime, var params
{
Array<Colour> remapColors;
remapColors.resize(resolution);
remapColors.fill(Colours::black);
remapColors.fill(Colours::transparentBlack);

Point<float> p = positionRemap->getPoint();
int startIndex = p.x * resolution;
Expand Down
2 changes: 1 addition & 1 deletion Source/Sequence/layers/Block/LightBlockLayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Array<Colour> LightBlockLayer::getColors(Prop* p, double time, var params)
{
Array<Colour> remapColors;
remapColors.resize(resolution);
remapColors.fill(Colours::black);
remapColors.fill(Colours::transparentBlack);

Point<float> p = positionRemap->getPoint();
int startIndex = p.x * resolution;
Expand Down

0 comments on commit 9eaf54c

Please sign in to comment.