diff --git a/Video/VideoAutoFlipper/Zly_VideoAutoFlipper.lua b/Video/VideoAutoFlipper/Zly_VideoAutoFlipper.lua index 9e94f72..1299069 100644 --- a/Video/VideoAutoFlipper/Zly_VideoAutoFlipper.lua +++ b/Video/VideoAutoFlipper/Zly_VideoAutoFlipper.lua @@ -1244,10 +1244,12 @@ 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.", @@ -1255,7 +1257,6 @@ function GUI:TAB_FAQ() 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", @@ -1263,7 +1264,6 @@ function GUI:TAB_FAQ() 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.", @@ -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