From 402de902ed1b221a3441e9a22290b0a7ac03e287 Mon Sep 17 00:00:00 2001 From: shun-iwasawa Date: Mar 31 2023 01:48:24 +0000 Subject: fix column transparency to work on rendering --- diff --git a/toonz/sources/toonzlib/scenefx.cpp b/toonz/sources/toonzlib/scenefx.cpp index 691b5a1..9f1d440 100644 --- a/toonz/sources/toonzlib/scenefx.cpp +++ b/toonz/sources/toonzlib/scenefx.cpp @@ -976,7 +976,7 @@ PlacedFx FxBuilder::makePF(TLevelColumnFx *lcfx) { (column->isCamstandVisible() && column->getOpacity() != 255))) { TPixel32 colorScale = m_scene->getProperties()->getColorFilterColor( column->getColorFilterId()); - if (colorScale != TPixel::Black) { + if (colorScale != TPixel::Black || column->getOpacity() != 255) { colorScale.m = (typename TPixel32::Channel)((int)colorScale.m * (int)column->getOpacity() / TPixel32::maxChannelValue);