From 4464fa3e3f3cb5ddf8653d6478fc25232acb05ca Mon Sep 17 00:00:00 2001 From: Isaac Shoebottom Date: Sat, 18 Nov 2023 01:42:58 -0400 Subject: [PATCH] Add some tools to make wallpaper engine videos --- WallpaperEngineTools/record-obs.ahk | 12 ++++++++++++ WallpaperEngineTools/source-setup.cfg | 10 ++++++++++ 2 files changed, 22 insertions(+) create mode 100644 WallpaperEngineTools/record-obs.ahk create mode 100644 WallpaperEngineTools/source-setup.cfg diff --git a/WallpaperEngineTools/record-obs.ahk b/WallpaperEngineTools/record-obs.ahk new file mode 100644 index 0000000..221cd73 --- /dev/null +++ b/WallpaperEngineTools/record-obs.ahk @@ -0,0 +1,12 @@ +; This script is very simple, it just starts a timer when the Ctrl + Shift + F11 key is pressed, starts recording in OBS, and then stops recording after 11 minutes using hotkeys within OBS +; 11 minutes is because I want to have a minute to make better looping while as close to 10m after editing +; Ctrl + Shift + F10 is what I use to toggle recording in OBS, so this script is useful for me to stop recording after 10 mins + +^+F11:: + Send, ^+F10 + SetTimer, Timer, 600000 + Return + +Timer: + Send, ^+F10 + Return \ No newline at end of file diff --git a/WallpaperEngineTools/source-setup.cfg b/WallpaperEngineTools/source-setup.cfg new file mode 100644 index 0000000..149f119 --- /dev/null +++ b/WallpaperEngineTools/source-setup.cfg @@ -0,0 +1,10 @@ +// First enable cheats +sv_cheats 1 + +// set max fps for cosistent waiting +fps_max 60 + +// Hide the HUD +cl_drawhud 0 +impulse 200 +// crosshair 0 \ No newline at end of file