Skip to content

Commit

Permalink
- Made FAQ a bit more readable.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zly-u committed Mar 12, 2024
1 parent 4455c25 commit 42da135
Showing 1 changed file with 29 additions and 3 deletions.
32 changes: 29 additions & 3 deletions Video/VideoAutoFlipper/Zly_VideoAutoFlipper.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1244,26 +1244,26 @@ function GUI:TAB_FAQ()
| reaper.ImGui_WindowFlags_NoResize()
| ImGui.WindowFlags_AlwaysVerticalScrollbar()
if ImGui.BeginChild(self.ctx, "AI", 0, 0, true, fla) then
local max_line_len = 36
--------------------------------------------------------------------------------------------------------------------
ImGui.PushStyleColor(self.ctx, ImGui.Col_Text(), hsl2rgb(60, 0.8, 0.8))
ImGui.SeparatorText(self.ctx, "Why Chroma Key thing?")
ImGui.PopStyleColor(self.ctx)
--------------------------------------------------------------------------------------------------------------------
local max_line_len = 36
ImGui.Text(self.ctx,
TextWrapper(
"Okay... This is a weird workaround I figured in order to do what I wanted this FX chain to do.",
max_line_len,
true
)
)

ImGui.Text(self.ctx,
TextWrapper(
"Every effect of VAF effect essentially fills the BG of the source with either Blue or Green for Chroma Key",
max_line_len,
true
)
)

ImGui.Text(self.ctx,
TextWrapper(
"It essentially allows you to do anything you want with the source without touching anything that is behind the video we are working with.",
Expand All @@ -1286,6 +1286,32 @@ function GUI:TAB_FAQ()
)
)

--------------------------------------------------------------------------------------------------------------------
ImGui.PushStyleColor(self.ctx, ImGui.Col_Text(), hsl2rgb(60, 0.8, 0.8))
ImGui.SeparatorText(self.ctx, "Helpers: Automation Items?")
ImGui.PopStyleColor(self.ctx)
--------------------------------------------------------------------------------------------------------------------
ImGui.Text(self.ctx,
TextWrapper(
"They are handy for creating envelopes to be used for each Media Item, like for animations.",
max_line_len,
true
)
)

--------------------------------------------------------------------------------------------------------------------
ImGui.PushStyleColor(self.ctx, ImGui.Col_Text(), hsl2rgb(60, 0.8, 0.8))
ImGui.SeparatorText(self.ctx, "Helpers: Silent Extend to Next?")
ImGui.PopStyleColor(self.ctx)
--------------------------------------------------------------------------------------------------------------------
ImGui.Text(self.ctx,
TextWrapper(
"Silent Fills created by this script won't interfere with the flipping generation, I have made a sure of that.",
max_line_len,
true
)
)

ImGui.EndChild(self.ctx)
end
end
Expand Down

0 comments on commit 42da135

Please sign in to comment.