├── !Update.ps1 ├── .clang-format ├── .gitattributes ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CMakePresets.json ├── COPYING ├── EXCEPTIONS ├── README.md ├── cmake ├── Plugin.h.in ├── build_stl_modules.props └── version.rc.in ├── format-all.ps1 ├── generate-sln.ps1 ├── src ├── CameraTweaksManager.cpp ├── CameraTweaksManager.h ├── Hooks.cpp ├── Hooks.h ├── PCH.h ├── RE │ └── Camera.h ├── Settings.cpp ├── Settings.h ├── Utils.cpp ├── Utils.h └── main.cpp └── vcpkg.json /!Update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersh1/BG3_NativeCameraTweaks/HEAD/!Update.ps1 -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersh1/BG3_NativeCameraTweaks/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | \!Update.ps1 linguist-vendored -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Build/ 2 | .vs/ 3 | *.zip -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersh1/BG3_NativeCameraTweaks/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersh1/BG3_NativeCameraTweaks/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersh1/BG3_NativeCameraTweaks/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersh1/BG3_NativeCameraTweaks/HEAD/COPYING -------------------------------------------------------------------------------- /EXCEPTIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersh1/BG3_NativeCameraTweaks/HEAD/EXCEPTIONS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersh1/BG3_NativeCameraTweaks/HEAD/README.md -------------------------------------------------------------------------------- /cmake/Plugin.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersh1/BG3_NativeCameraTweaks/HEAD/cmake/Plugin.h.in -------------------------------------------------------------------------------- /cmake/build_stl_modules.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersh1/BG3_NativeCameraTweaks/HEAD/cmake/build_stl_modules.props -------------------------------------------------------------------------------- /cmake/version.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersh1/BG3_NativeCameraTweaks/HEAD/cmake/version.rc.in -------------------------------------------------------------------------------- /format-all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersh1/BG3_NativeCameraTweaks/HEAD/format-all.ps1 -------------------------------------------------------------------------------- /generate-sln.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersh1/BG3_NativeCameraTweaks/HEAD/generate-sln.ps1 -------------------------------------------------------------------------------- /src/CameraTweaksManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersh1/BG3_NativeCameraTweaks/HEAD/src/CameraTweaksManager.cpp -------------------------------------------------------------------------------- /src/CameraTweaksManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersh1/BG3_NativeCameraTweaks/HEAD/src/CameraTweaksManager.h -------------------------------------------------------------------------------- /src/Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersh1/BG3_NativeCameraTweaks/HEAD/src/Hooks.cpp -------------------------------------------------------------------------------- /src/Hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersh1/BG3_NativeCameraTweaks/HEAD/src/Hooks.h -------------------------------------------------------------------------------- /src/PCH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersh1/BG3_NativeCameraTweaks/HEAD/src/PCH.h -------------------------------------------------------------------------------- /src/RE/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersh1/BG3_NativeCameraTweaks/HEAD/src/RE/Camera.h -------------------------------------------------------------------------------- /src/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersh1/BG3_NativeCameraTweaks/HEAD/src/Settings.cpp -------------------------------------------------------------------------------- /src/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersh1/BG3_NativeCameraTweaks/HEAD/src/Settings.h -------------------------------------------------------------------------------- /src/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersh1/BG3_NativeCameraTweaks/HEAD/src/Utils.cpp -------------------------------------------------------------------------------- /src/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersh1/BG3_NativeCameraTweaks/HEAD/src/Utils.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersh1/BG3_NativeCameraTweaks/HEAD/src/main.cpp -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersh1/BG3_NativeCameraTweaks/HEAD/vcpkg.json --------------------------------------------------------------------------------