Skip to content

Commit

Permalink
Release Apply render preset v2.1 (#1287)
Browse files Browse the repository at this point in the history
Add support for post-processing fade-in and fade-out
Add support for rendering metadata [p=2736401]
Add support for tail length
  • Loading branch information
cfillion authored Nov 24, 2023
1 parent 9244b13 commit d31bfa8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Rendering/cfillion_Apply render preset.lua
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,10 @@ local function postprocessCell(ctx, preset)

ImGui.EndTooltip(ctx)
end
boolText(ctx, (postprocess & (NORMALIZE_ENABLE | BRICKWALL_ENABLE)) ~= 0)

local enable_mask =
NORMALIZE_ENABLE | BRICKWALL_ENABLE | FADEIN_ENABLE | FADEOUT_ENABLE
boolText(ctx, (postprocess & enable_mask) ~= 0)
end

local function sourceCell(ctx, preset)
Expand Down

0 comments on commit d31bfa8

Please sign in to comment.