View Single Post
Old 2nd September 2021, 20:22   #5  |  Link
Reel.Deel
Registered User
 
Join Date: Mar 2012
Location: Texas
Posts: 1,666
Quote:
Originally Posted by Arx1meD View Post
Hi Reel.Deel
I noticed an error in your script:
In the OverlayPlus function, the "chroma" option is defined as bool:

Then you assign chroma the string:
It just converts true or false to "process" and "copy" to feed mt_merge's chroma parameter . Similar to what you did in your script:

Code:
chrom   = blend_rgb || chroma ? "process" : "copy"
Quote:
Originally Posted by StainlessS View Post
and instead of
Code:
Defined(msk)==false
Maybe
Code:
!Defined(msk)
I will probably do some cosmetics later. But I guess it's just me but I like putting true or false, it makes it easier for me to follow.
Reel.Deel is offline   Reply With Quote