├── .buckconfig ├── .buckroot ├── .gitignore ├── .gitmodules ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── BUCK ├── CHANGES.md ├── CMakeLists.txt ├── CodeGen ├── MCM │ ├── mcm │ │ ├── include │ │ │ ├── controls.psc │ │ │ ├── crosshair.psc │ │ │ ├── dialogue.psc │ │ │ ├── general.psc │ │ │ ├── native_functions.psc │ │ │ ├── offset_groups.psc │ │ │ ├── presets.psc │ │ │ ├── thirdperson.psc │ │ │ └── util_functions.psc │ │ └── mcm.psc │ ├── paper │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── dub.json │ │ ├── dub.selections.json │ │ └── source │ │ │ ├── app.d │ │ │ ├── constructs │ │ │ ├── all_of_struct.d │ │ │ ├── arena.d │ │ │ ├── auto_array.d │ │ │ ├── const_struct.d │ │ │ ├── decl_offset_group.d │ │ │ ├── iconstruct.d │ │ │ ├── impl_offset_group.d │ │ │ ├── include.d │ │ │ ├── struct_alias.d │ │ │ ├── struct_invoke_on.d │ │ │ └── struct_invoke_switchifeq.d │ │ │ ├── keywords │ │ │ └── package.d │ │ │ ├── lex_machine.d │ │ │ ├── mangler.d │ │ │ ├── result.d │ │ │ └── tokenizer │ │ │ ├── package.d │ │ │ ├── tokens.d │ │ │ └── utils.d │ └── run_preprocess.bat └── ModelBaker │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── build_rel.bat │ ├── dub.json │ ├── dub.selections.json │ ├── input │ ├── dot.ply │ └── skyrim_crosshair.ply │ └── source │ ├── app.d │ └── mesh │ ├── basic_writer.d │ └── loader.d ├── DepGenerated ├── ZycoreExportConfig.h ├── ZydisExportConfig.h ├── assimp │ ├── config.h │ └── revision.h └── zconf.h ├── Deps └── bindbc-assimp │ ├── .gitignore │ ├── LICENSE_1_0.txt │ ├── README.md │ ├── dscanner.ini │ ├── dub.json │ └── source │ └── bindbc │ └── assimp │ ├── binddynamic.d │ ├── bindstatic.d │ ├── package.d │ └── types.d ├── Package ├── 00 Data │ ├── AE-Pre629 │ │ └── placeholder │ ├── AE │ │ └── placeholder │ ├── ExtraData │ │ ├── SmoothCam_EyeBones_Default.txt │ │ ├── SmoothCam_FocusBones_Default.txt │ │ ├── SmoothCam_FollowBones_Default.txt │ │ └── acknowledgements.md │ ├── SSE │ │ └── placeholder │ ├── SmoothCam.esl │ ├── SmoothCam.esp │ └── SmoothCamMCM.pex └── Fomod │ ├── ModuleConfig.xml │ └── info.xml ├── README.md ├── SmoothCam ├── include │ ├── SmoothCamAPI.h │ ├── arrow_fixes.h │ ├── basicdetour.h │ ├── camera.h │ ├── camera_states │ │ ├── base_first.h │ │ ├── base_third.h │ │ └── thirdperson │ │ │ ├── dialogue │ │ │ ├── face_to_face.h │ │ │ ├── oblivion.h │ │ │ └── skyrim.h │ │ │ ├── thirdperson.h │ │ │ ├── thirdperson_dialogue.h │ │ │ └── thirdperson_vanity.h │ ├── code_analysis.h │ ├── compat.h │ ├── config.h │ ├── crosshair.h │ ├── crosshair │ │ ├── base.h │ │ ├── dot.h │ │ └── skyrim.h │ ├── debug │ │ ├── ICommand.h │ │ ├── commands │ │ │ ├── dump_game_ini.h │ │ │ ├── dump_game_perfs_ini.h │ │ │ ├── get_setting.h │ │ │ ├── help.h │ │ │ └── set_setting.h │ │ ├── console.h │ │ ├── eh.h │ │ └── registry.h │ ├── firstperson.h │ ├── game_state.h │ ├── hooks.h │ ├── main.h │ ├── mmath.h │ ├── modapi.h │ ├── offset_ids.h │ ├── papyrus.h │ ├── pch.h │ ├── profile.h │ ├── raycast.h │ ├── render │ │ ├── cbuffer.h │ │ ├── common.h │ │ ├── d2d.h │ │ ├── d3d_context.h │ │ ├── dwrite.h │ │ ├── gradbox.h │ │ ├── line_drawer.h │ │ ├── line_graph.h │ │ ├── mesh_drawer.h │ │ ├── model.h │ │ ├── models │ │ │ ├── dot.h │ │ │ └── skyrim_crosshair.h │ │ ├── ninode_tree_display.h │ │ ├── render_target.h │ │ ├── shader.h │ │ ├── shader_cache.h │ │ ├── shaders │ │ │ ├── draw_fullscreen_texture.h │ │ │ ├── shader_decl.h │ │ │ ├── vertex_color_screen.h │ │ │ └── vertex_color_world.h │ │ ├── srv.h │ │ ├── state_overlay.h │ │ ├── texture2d.h │ │ └── vertex_buffer.h │ ├── resource.h │ ├── skyrimSE │ │ ├── AutoVanityState.h │ │ ├── DragonCameraState.h │ │ ├── FreeCameraState.h │ │ ├── HorseCameraState.h │ │ ├── IMovementInterface.h │ │ └── PlayerCameraTransitionState.h │ ├── string_builder.h │ ├── thirdperson.h │ ├── timer.h │ ├── trackir │ │ └── trackir.h │ └── util.h └── source │ ├── arrow_fixes.cpp │ ├── camera.cpp │ ├── camera_states │ ├── base_first.cpp │ ├── base_third.cpp │ └── thirdperson │ │ ├── dialogue │ │ ├── face_to_face.cpp │ │ ├── oblivion.cpp │ │ └── skyrim.cpp │ │ ├── thirdperson.cpp │ │ ├── thirdperson_dialogue.cpp │ │ └── thirdperson_vanity.cpp │ ├── compat.cpp │ ├── config.cpp │ ├── crosshair.cpp │ ├── crosshair │ ├── base.cpp │ ├── dot.cpp │ └── skyrim.cpp │ ├── debug │ ├── ICommand.cpp │ ├── commands │ │ ├── dump_game_ini.cpp │ │ ├── dump_game_perfs_ini.cpp │ │ ├── get_setting.cpp │ │ ├── help.cpp │ │ └── set_setting.cpp │ ├── console.cpp │ ├── eh.cpp │ └── registry.cpp │ ├── firstperson.cpp │ ├── game_state.cpp │ ├── hooks.cpp │ ├── main.cpp │ ├── mmath.cpp │ ├── modapi.cpp │ ├── offset_ids.cpp │ ├── papyrus.cpp │ ├── pch.cpp │ ├── raycast.cpp │ ├── render │ ├── cbuffer.cpp │ ├── common.cpp │ ├── d2d.cpp │ ├── d3d_context.cpp │ ├── dwrite.cpp │ ├── gradbox.cpp │ ├── line_drawer.cpp │ ├── line_graph.cpp │ ├── mesh_drawer.cpp │ ├── model.cpp │ ├── ninode_tree_display.cpp │ ├── render_target.cpp │ ├── shader.cpp │ ├── shader_cache.cpp │ ├── srv.cpp │ ├── state_overlay.cpp │ ├── texture2d.cpp │ └── vertex_buffer.cpp │ ├── thirdperson.cpp │ ├── timer.cpp │ ├── trackir │ └── trackir.cpp │ └── util.cpp ├── buck2 ├── mode │ ├── debug │ ├── debug_pre629 │ ├── release │ └── release_pre629 ├── subdir_glob.bzl └── toolchains │ ├── BUCK │ ├── copy.ps1 │ ├── create_compile_commands.ps1 │ └── install.ps1 ├── cmake ├── headers.cmake └── source.cmake ├── codegen.bzl ├── package.py ├── scripts ├── bootstrap.ps1 ├── build_detours.bat ├── check-install.py ├── fetch-buck.ps1 ├── find-python3.ps1 ├── install-7z.ps1 ├── install-ldc.ps1 ├── install-python3.ps1 ├── install-vsbuild-tools.ps1 └── install-zstd.ps1 ├── smoothcam_cxx.bzl └── vcpkg.json /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/.buckconfig -------------------------------------------------------------------------------- /.buckroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/BUCK -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CodeGen/MCM/mcm/include/controls.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/mcm/include/controls.psc -------------------------------------------------------------------------------- /CodeGen/MCM/mcm/include/crosshair.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/mcm/include/crosshair.psc -------------------------------------------------------------------------------- /CodeGen/MCM/mcm/include/dialogue.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/mcm/include/dialogue.psc -------------------------------------------------------------------------------- /CodeGen/MCM/mcm/include/general.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/mcm/include/general.psc -------------------------------------------------------------------------------- /CodeGen/MCM/mcm/include/native_functions.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/mcm/include/native_functions.psc -------------------------------------------------------------------------------- /CodeGen/MCM/mcm/include/offset_groups.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/mcm/include/offset_groups.psc -------------------------------------------------------------------------------- /CodeGen/MCM/mcm/include/presets.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/mcm/include/presets.psc -------------------------------------------------------------------------------- /CodeGen/MCM/mcm/include/thirdperson.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/mcm/include/thirdperson.psc -------------------------------------------------------------------------------- /CodeGen/MCM/mcm/include/util_functions.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/mcm/include/util_functions.psc -------------------------------------------------------------------------------- /CodeGen/MCM/mcm/mcm.psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/mcm/mcm.psc -------------------------------------------------------------------------------- /CodeGen/MCM/paper/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/paper/.vscode/launch.json -------------------------------------------------------------------------------- /CodeGen/MCM/paper/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/paper/.vscode/tasks.json -------------------------------------------------------------------------------- /CodeGen/MCM/paper/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/paper/dub.json -------------------------------------------------------------------------------- /CodeGen/MCM/paper/dub.selections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/paper/dub.selections.json -------------------------------------------------------------------------------- /CodeGen/MCM/paper/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/paper/source/app.d -------------------------------------------------------------------------------- /CodeGen/MCM/paper/source/constructs/all_of_struct.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/paper/source/constructs/all_of_struct.d -------------------------------------------------------------------------------- /CodeGen/MCM/paper/source/constructs/arena.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/paper/source/constructs/arena.d -------------------------------------------------------------------------------- /CodeGen/MCM/paper/source/constructs/auto_array.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/paper/source/constructs/auto_array.d -------------------------------------------------------------------------------- /CodeGen/MCM/paper/source/constructs/const_struct.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/paper/source/constructs/const_struct.d -------------------------------------------------------------------------------- /CodeGen/MCM/paper/source/constructs/decl_offset_group.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/paper/source/constructs/decl_offset_group.d -------------------------------------------------------------------------------- /CodeGen/MCM/paper/source/constructs/iconstruct.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/paper/source/constructs/iconstruct.d -------------------------------------------------------------------------------- /CodeGen/MCM/paper/source/constructs/impl_offset_group.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/paper/source/constructs/impl_offset_group.d -------------------------------------------------------------------------------- /CodeGen/MCM/paper/source/constructs/include.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/paper/source/constructs/include.d -------------------------------------------------------------------------------- /CodeGen/MCM/paper/source/constructs/struct_alias.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/paper/source/constructs/struct_alias.d -------------------------------------------------------------------------------- /CodeGen/MCM/paper/source/constructs/struct_invoke_on.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/paper/source/constructs/struct_invoke_on.d -------------------------------------------------------------------------------- /CodeGen/MCM/paper/source/constructs/struct_invoke_switchifeq.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/paper/source/constructs/struct_invoke_switchifeq.d -------------------------------------------------------------------------------- /CodeGen/MCM/paper/source/keywords/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/paper/source/keywords/package.d -------------------------------------------------------------------------------- /CodeGen/MCM/paper/source/lex_machine.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/paper/source/lex_machine.d -------------------------------------------------------------------------------- /CodeGen/MCM/paper/source/mangler.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/paper/source/mangler.d -------------------------------------------------------------------------------- /CodeGen/MCM/paper/source/result.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/paper/source/result.d -------------------------------------------------------------------------------- /CodeGen/MCM/paper/source/tokenizer/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/paper/source/tokenizer/package.d -------------------------------------------------------------------------------- /CodeGen/MCM/paper/source/tokenizer/tokens.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/paper/source/tokenizer/tokens.d -------------------------------------------------------------------------------- /CodeGen/MCM/paper/source/tokenizer/utils.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/paper/source/tokenizer/utils.d -------------------------------------------------------------------------------- /CodeGen/MCM/run_preprocess.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/MCM/run_preprocess.bat -------------------------------------------------------------------------------- /CodeGen/ModelBaker/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/ModelBaker/.vscode/launch.json -------------------------------------------------------------------------------- /CodeGen/ModelBaker/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/ModelBaker/.vscode/tasks.json -------------------------------------------------------------------------------- /CodeGen/ModelBaker/build_rel.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/ModelBaker/build_rel.bat -------------------------------------------------------------------------------- /CodeGen/ModelBaker/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/ModelBaker/dub.json -------------------------------------------------------------------------------- /CodeGen/ModelBaker/dub.selections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/ModelBaker/dub.selections.json -------------------------------------------------------------------------------- /CodeGen/ModelBaker/input/dot.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/ModelBaker/input/dot.ply -------------------------------------------------------------------------------- /CodeGen/ModelBaker/input/skyrim_crosshair.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/ModelBaker/input/skyrim_crosshair.ply -------------------------------------------------------------------------------- /CodeGen/ModelBaker/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/ModelBaker/source/app.d -------------------------------------------------------------------------------- /CodeGen/ModelBaker/source/mesh/basic_writer.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/ModelBaker/source/mesh/basic_writer.d -------------------------------------------------------------------------------- /CodeGen/ModelBaker/source/mesh/loader.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/CodeGen/ModelBaker/source/mesh/loader.d -------------------------------------------------------------------------------- /DepGenerated/ZycoreExportConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/DepGenerated/ZycoreExportConfig.h -------------------------------------------------------------------------------- /DepGenerated/ZydisExportConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/DepGenerated/ZydisExportConfig.h -------------------------------------------------------------------------------- /DepGenerated/assimp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/DepGenerated/assimp/config.h -------------------------------------------------------------------------------- /DepGenerated/assimp/revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/DepGenerated/assimp/revision.h -------------------------------------------------------------------------------- /DepGenerated/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/DepGenerated/zconf.h -------------------------------------------------------------------------------- /Deps/bindbc-assimp/.gitignore: -------------------------------------------------------------------------------- 1 | lib 2 | dub.selections.json 3 | .dub -------------------------------------------------------------------------------- /Deps/bindbc-assimp/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/Deps/bindbc-assimp/LICENSE_1_0.txt -------------------------------------------------------------------------------- /Deps/bindbc-assimp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/Deps/bindbc-assimp/README.md -------------------------------------------------------------------------------- /Deps/bindbc-assimp/dscanner.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/Deps/bindbc-assimp/dscanner.ini -------------------------------------------------------------------------------- /Deps/bindbc-assimp/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/Deps/bindbc-assimp/dub.json -------------------------------------------------------------------------------- /Deps/bindbc-assimp/source/bindbc/assimp/binddynamic.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/Deps/bindbc-assimp/source/bindbc/assimp/binddynamic.d -------------------------------------------------------------------------------- /Deps/bindbc-assimp/source/bindbc/assimp/bindstatic.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/Deps/bindbc-assimp/source/bindbc/assimp/bindstatic.d -------------------------------------------------------------------------------- /Deps/bindbc-assimp/source/bindbc/assimp/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/Deps/bindbc-assimp/source/bindbc/assimp/package.d -------------------------------------------------------------------------------- /Deps/bindbc-assimp/source/bindbc/assimp/types.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/Deps/bindbc-assimp/source/bindbc/assimp/types.d -------------------------------------------------------------------------------- /Package/00 Data/AE-Pre629/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Package/00 Data/AE/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Package/00 Data/ExtraData/SmoothCam_EyeBones_Default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/Package/00 Data/ExtraData/SmoothCam_EyeBones_Default.txt -------------------------------------------------------------------------------- /Package/00 Data/ExtraData/SmoothCam_FocusBones_Default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/Package/00 Data/ExtraData/SmoothCam_FocusBones_Default.txt -------------------------------------------------------------------------------- /Package/00 Data/ExtraData/SmoothCam_FollowBones_Default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/Package/00 Data/ExtraData/SmoothCam_FollowBones_Default.txt -------------------------------------------------------------------------------- /Package/00 Data/ExtraData/acknowledgements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/Package/00 Data/ExtraData/acknowledgements.md -------------------------------------------------------------------------------- /Package/00 Data/SSE/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Package/00 Data/SmoothCam.esl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/Package/00 Data/SmoothCam.esl -------------------------------------------------------------------------------- /Package/00 Data/SmoothCam.esp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/Package/00 Data/SmoothCam.esp -------------------------------------------------------------------------------- /Package/00 Data/SmoothCamMCM.pex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/Package/00 Data/SmoothCamMCM.pex -------------------------------------------------------------------------------- /Package/Fomod/ModuleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/Package/Fomod/ModuleConfig.xml -------------------------------------------------------------------------------- /Package/Fomod/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/Package/Fomod/info.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/README.md -------------------------------------------------------------------------------- /SmoothCam/include/SmoothCamAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/SmoothCamAPI.h -------------------------------------------------------------------------------- /SmoothCam/include/arrow_fixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/arrow_fixes.h -------------------------------------------------------------------------------- /SmoothCam/include/basicdetour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/basicdetour.h -------------------------------------------------------------------------------- /SmoothCam/include/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/camera.h -------------------------------------------------------------------------------- /SmoothCam/include/camera_states/base_first.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/camera_states/base_first.h -------------------------------------------------------------------------------- /SmoothCam/include/camera_states/base_third.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/camera_states/base_third.h -------------------------------------------------------------------------------- /SmoothCam/include/camera_states/thirdperson/dialogue/face_to_face.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/camera_states/thirdperson/dialogue/face_to_face.h -------------------------------------------------------------------------------- /SmoothCam/include/camera_states/thirdperson/dialogue/oblivion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/camera_states/thirdperson/dialogue/oblivion.h -------------------------------------------------------------------------------- /SmoothCam/include/camera_states/thirdperson/dialogue/skyrim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/camera_states/thirdperson/dialogue/skyrim.h -------------------------------------------------------------------------------- /SmoothCam/include/camera_states/thirdperson/thirdperson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/camera_states/thirdperson/thirdperson.h -------------------------------------------------------------------------------- /SmoothCam/include/camera_states/thirdperson/thirdperson_dialogue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/camera_states/thirdperson/thirdperson_dialogue.h -------------------------------------------------------------------------------- /SmoothCam/include/camera_states/thirdperson/thirdperson_vanity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/camera_states/thirdperson/thirdperson_vanity.h -------------------------------------------------------------------------------- /SmoothCam/include/code_analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/code_analysis.h -------------------------------------------------------------------------------- /SmoothCam/include/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/compat.h -------------------------------------------------------------------------------- /SmoothCam/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/config.h -------------------------------------------------------------------------------- /SmoothCam/include/crosshair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/crosshair.h -------------------------------------------------------------------------------- /SmoothCam/include/crosshair/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/crosshair/base.h -------------------------------------------------------------------------------- /SmoothCam/include/crosshair/dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/crosshair/dot.h -------------------------------------------------------------------------------- /SmoothCam/include/crosshair/skyrim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/crosshair/skyrim.h -------------------------------------------------------------------------------- /SmoothCam/include/debug/ICommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/debug/ICommand.h -------------------------------------------------------------------------------- /SmoothCam/include/debug/commands/dump_game_ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/debug/commands/dump_game_ini.h -------------------------------------------------------------------------------- /SmoothCam/include/debug/commands/dump_game_perfs_ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/debug/commands/dump_game_perfs_ini.h -------------------------------------------------------------------------------- /SmoothCam/include/debug/commands/get_setting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/debug/commands/get_setting.h -------------------------------------------------------------------------------- /SmoothCam/include/debug/commands/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/debug/commands/help.h -------------------------------------------------------------------------------- /SmoothCam/include/debug/commands/set_setting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/debug/commands/set_setting.h -------------------------------------------------------------------------------- /SmoothCam/include/debug/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/debug/console.h -------------------------------------------------------------------------------- /SmoothCam/include/debug/eh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/debug/eh.h -------------------------------------------------------------------------------- /SmoothCam/include/debug/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/debug/registry.h -------------------------------------------------------------------------------- /SmoothCam/include/firstperson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/firstperson.h -------------------------------------------------------------------------------- /SmoothCam/include/game_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/game_state.h -------------------------------------------------------------------------------- /SmoothCam/include/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/hooks.h -------------------------------------------------------------------------------- /SmoothCam/include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/main.h -------------------------------------------------------------------------------- /SmoothCam/include/mmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/mmath.h -------------------------------------------------------------------------------- /SmoothCam/include/modapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/modapi.h -------------------------------------------------------------------------------- /SmoothCam/include/offset_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/offset_ids.h -------------------------------------------------------------------------------- /SmoothCam/include/papyrus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/papyrus.h -------------------------------------------------------------------------------- /SmoothCam/include/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/pch.h -------------------------------------------------------------------------------- /SmoothCam/include/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/profile.h -------------------------------------------------------------------------------- /SmoothCam/include/raycast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/raycast.h -------------------------------------------------------------------------------- /SmoothCam/include/render/cbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/render/cbuffer.h -------------------------------------------------------------------------------- /SmoothCam/include/render/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/render/common.h -------------------------------------------------------------------------------- /SmoothCam/include/render/d2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/render/d2d.h -------------------------------------------------------------------------------- /SmoothCam/include/render/d3d_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/render/d3d_context.h -------------------------------------------------------------------------------- /SmoothCam/include/render/dwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/render/dwrite.h -------------------------------------------------------------------------------- /SmoothCam/include/render/gradbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/render/gradbox.h -------------------------------------------------------------------------------- /SmoothCam/include/render/line_drawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/render/line_drawer.h -------------------------------------------------------------------------------- /SmoothCam/include/render/line_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/render/line_graph.h -------------------------------------------------------------------------------- /SmoothCam/include/render/mesh_drawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/render/mesh_drawer.h -------------------------------------------------------------------------------- /SmoothCam/include/render/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/render/model.h -------------------------------------------------------------------------------- /SmoothCam/include/render/models/dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/render/models/dot.h -------------------------------------------------------------------------------- /SmoothCam/include/render/models/skyrim_crosshair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/render/models/skyrim_crosshair.h -------------------------------------------------------------------------------- /SmoothCam/include/render/ninode_tree_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/render/ninode_tree_display.h -------------------------------------------------------------------------------- /SmoothCam/include/render/render_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/render/render_target.h -------------------------------------------------------------------------------- /SmoothCam/include/render/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/render/shader.h -------------------------------------------------------------------------------- /SmoothCam/include/render/shader_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/render/shader_cache.h -------------------------------------------------------------------------------- /SmoothCam/include/render/shaders/draw_fullscreen_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/render/shaders/draw_fullscreen_texture.h -------------------------------------------------------------------------------- /SmoothCam/include/render/shaders/shader_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/render/shaders/shader_decl.h -------------------------------------------------------------------------------- /SmoothCam/include/render/shaders/vertex_color_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/render/shaders/vertex_color_screen.h -------------------------------------------------------------------------------- /SmoothCam/include/render/shaders/vertex_color_world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/render/shaders/vertex_color_world.h -------------------------------------------------------------------------------- /SmoothCam/include/render/srv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/render/srv.h -------------------------------------------------------------------------------- /SmoothCam/include/render/state_overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/render/state_overlay.h -------------------------------------------------------------------------------- /SmoothCam/include/render/texture2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/render/texture2d.h -------------------------------------------------------------------------------- /SmoothCam/include/render/vertex_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/render/vertex_buffer.h -------------------------------------------------------------------------------- /SmoothCam/include/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/resource.h -------------------------------------------------------------------------------- /SmoothCam/include/skyrimSE/AutoVanityState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/skyrimSE/AutoVanityState.h -------------------------------------------------------------------------------- /SmoothCam/include/skyrimSE/DragonCameraState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/skyrimSE/DragonCameraState.h -------------------------------------------------------------------------------- /SmoothCam/include/skyrimSE/FreeCameraState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/skyrimSE/FreeCameraState.h -------------------------------------------------------------------------------- /SmoothCam/include/skyrimSE/HorseCameraState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/skyrimSE/HorseCameraState.h -------------------------------------------------------------------------------- /SmoothCam/include/skyrimSE/IMovementInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/skyrimSE/IMovementInterface.h -------------------------------------------------------------------------------- /SmoothCam/include/skyrimSE/PlayerCameraTransitionState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/skyrimSE/PlayerCameraTransitionState.h -------------------------------------------------------------------------------- /SmoothCam/include/string_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/string_builder.h -------------------------------------------------------------------------------- /SmoothCam/include/thirdperson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/thirdperson.h -------------------------------------------------------------------------------- /SmoothCam/include/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/timer.h -------------------------------------------------------------------------------- /SmoothCam/include/trackir/trackir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/trackir/trackir.h -------------------------------------------------------------------------------- /SmoothCam/include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/include/util.h -------------------------------------------------------------------------------- /SmoothCam/source/arrow_fixes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/arrow_fixes.cpp -------------------------------------------------------------------------------- /SmoothCam/source/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/camera.cpp -------------------------------------------------------------------------------- /SmoothCam/source/camera_states/base_first.cpp: -------------------------------------------------------------------------------- 1 | // TODO... maybe -------------------------------------------------------------------------------- /SmoothCam/source/camera_states/base_third.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/camera_states/base_third.cpp -------------------------------------------------------------------------------- /SmoothCam/source/camera_states/thirdperson/dialogue/face_to_face.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/camera_states/thirdperson/dialogue/face_to_face.cpp -------------------------------------------------------------------------------- /SmoothCam/source/camera_states/thirdperson/dialogue/oblivion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/camera_states/thirdperson/dialogue/oblivion.cpp -------------------------------------------------------------------------------- /SmoothCam/source/camera_states/thirdperson/dialogue/skyrim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/camera_states/thirdperson/dialogue/skyrim.cpp -------------------------------------------------------------------------------- /SmoothCam/source/camera_states/thirdperson/thirdperson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/camera_states/thirdperson/thirdperson.cpp -------------------------------------------------------------------------------- /SmoothCam/source/camera_states/thirdperson/thirdperson_dialogue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/camera_states/thirdperson/thirdperson_dialogue.cpp -------------------------------------------------------------------------------- /SmoothCam/source/camera_states/thirdperson/thirdperson_vanity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/camera_states/thirdperson/thirdperson_vanity.cpp -------------------------------------------------------------------------------- /SmoothCam/source/compat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/compat.cpp -------------------------------------------------------------------------------- /SmoothCam/source/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/config.cpp -------------------------------------------------------------------------------- /SmoothCam/source/crosshair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/crosshair.cpp -------------------------------------------------------------------------------- /SmoothCam/source/crosshair/base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/crosshair/base.cpp -------------------------------------------------------------------------------- /SmoothCam/source/crosshair/dot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/crosshair/dot.cpp -------------------------------------------------------------------------------- /SmoothCam/source/crosshair/skyrim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/crosshair/skyrim.cpp -------------------------------------------------------------------------------- /SmoothCam/source/debug/ICommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/debug/ICommand.cpp -------------------------------------------------------------------------------- /SmoothCam/source/debug/commands/dump_game_ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/debug/commands/dump_game_ini.cpp -------------------------------------------------------------------------------- /SmoothCam/source/debug/commands/dump_game_perfs_ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/debug/commands/dump_game_perfs_ini.cpp -------------------------------------------------------------------------------- /SmoothCam/source/debug/commands/get_setting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/debug/commands/get_setting.cpp -------------------------------------------------------------------------------- /SmoothCam/source/debug/commands/help.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/debug/commands/help.cpp -------------------------------------------------------------------------------- /SmoothCam/source/debug/commands/set_setting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/debug/commands/set_setting.cpp -------------------------------------------------------------------------------- /SmoothCam/source/debug/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/debug/console.cpp -------------------------------------------------------------------------------- /SmoothCam/source/debug/eh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/debug/eh.cpp -------------------------------------------------------------------------------- /SmoothCam/source/debug/registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/debug/registry.cpp -------------------------------------------------------------------------------- /SmoothCam/source/firstperson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/firstperson.cpp -------------------------------------------------------------------------------- /SmoothCam/source/game_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/game_state.cpp -------------------------------------------------------------------------------- /SmoothCam/source/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/hooks.cpp -------------------------------------------------------------------------------- /SmoothCam/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/main.cpp -------------------------------------------------------------------------------- /SmoothCam/source/mmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/mmath.cpp -------------------------------------------------------------------------------- /SmoothCam/source/modapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/modapi.cpp -------------------------------------------------------------------------------- /SmoothCam/source/offset_ids.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/offset_ids.cpp -------------------------------------------------------------------------------- /SmoothCam/source/papyrus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/papyrus.cpp -------------------------------------------------------------------------------- /SmoothCam/source/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/pch.cpp -------------------------------------------------------------------------------- /SmoothCam/source/raycast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/raycast.cpp -------------------------------------------------------------------------------- /SmoothCam/source/render/cbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/render/cbuffer.cpp -------------------------------------------------------------------------------- /SmoothCam/source/render/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/render/common.cpp -------------------------------------------------------------------------------- /SmoothCam/source/render/d2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/render/d2d.cpp -------------------------------------------------------------------------------- /SmoothCam/source/render/d3d_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/render/d3d_context.cpp -------------------------------------------------------------------------------- /SmoothCam/source/render/dwrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/render/dwrite.cpp -------------------------------------------------------------------------------- /SmoothCam/source/render/gradbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/render/gradbox.cpp -------------------------------------------------------------------------------- /SmoothCam/source/render/line_drawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/render/line_drawer.cpp -------------------------------------------------------------------------------- /SmoothCam/source/render/line_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/render/line_graph.cpp -------------------------------------------------------------------------------- /SmoothCam/source/render/mesh_drawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/render/mesh_drawer.cpp -------------------------------------------------------------------------------- /SmoothCam/source/render/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/render/model.cpp -------------------------------------------------------------------------------- /SmoothCam/source/render/ninode_tree_display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/render/ninode_tree_display.cpp -------------------------------------------------------------------------------- /SmoothCam/source/render/render_target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/render/render_target.cpp -------------------------------------------------------------------------------- /SmoothCam/source/render/shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/render/shader.cpp -------------------------------------------------------------------------------- /SmoothCam/source/render/shader_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/render/shader_cache.cpp -------------------------------------------------------------------------------- /SmoothCam/source/render/srv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/render/srv.cpp -------------------------------------------------------------------------------- /SmoothCam/source/render/state_overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/render/state_overlay.cpp -------------------------------------------------------------------------------- /SmoothCam/source/render/texture2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/render/texture2d.cpp -------------------------------------------------------------------------------- /SmoothCam/source/render/vertex_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/render/vertex_buffer.cpp -------------------------------------------------------------------------------- /SmoothCam/source/thirdperson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/thirdperson.cpp -------------------------------------------------------------------------------- /SmoothCam/source/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/timer.cpp -------------------------------------------------------------------------------- /SmoothCam/source/trackir/trackir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/trackir/trackir.cpp -------------------------------------------------------------------------------- /SmoothCam/source/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/SmoothCam/source/util.cpp -------------------------------------------------------------------------------- /buck2/mode/debug: -------------------------------------------------------------------------------- 1 | [build] 2 | mode=debug 3 | pre629=disabled 4 | -------------------------------------------------------------------------------- /buck2/mode/debug_pre629: -------------------------------------------------------------------------------- 1 | [build] 2 | mode=debug 3 | pre629=enabled 4 | -------------------------------------------------------------------------------- /buck2/mode/release: -------------------------------------------------------------------------------- 1 | [build] 2 | mode=release 3 | pre629=disabled 4 | -------------------------------------------------------------------------------- /buck2/mode/release_pre629: -------------------------------------------------------------------------------- 1 | [build] 2 | mode=release 3 | pre629=enabled 4 | -------------------------------------------------------------------------------- /buck2/subdir_glob.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/buck2/subdir_glob.bzl -------------------------------------------------------------------------------- /buck2/toolchains/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/buck2/toolchains/BUCK -------------------------------------------------------------------------------- /buck2/toolchains/copy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/buck2/toolchains/copy.ps1 -------------------------------------------------------------------------------- /buck2/toolchains/create_compile_commands.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/buck2/toolchains/create_compile_commands.ps1 -------------------------------------------------------------------------------- /buck2/toolchains/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/buck2/toolchains/install.ps1 -------------------------------------------------------------------------------- /cmake/headers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/cmake/headers.cmake -------------------------------------------------------------------------------- /cmake/source.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/cmake/source.cmake -------------------------------------------------------------------------------- /codegen.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/codegen.bzl -------------------------------------------------------------------------------- /package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/package.py -------------------------------------------------------------------------------- /scripts/bootstrap.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/scripts/bootstrap.ps1 -------------------------------------------------------------------------------- /scripts/build_detours.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/scripts/build_detours.bat -------------------------------------------------------------------------------- /scripts/check-install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/scripts/check-install.py -------------------------------------------------------------------------------- /scripts/fetch-buck.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/scripts/fetch-buck.ps1 -------------------------------------------------------------------------------- /scripts/find-python3.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/scripts/find-python3.ps1 -------------------------------------------------------------------------------- /scripts/install-7z.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/scripts/install-7z.ps1 -------------------------------------------------------------------------------- /scripts/install-ldc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/scripts/install-ldc.ps1 -------------------------------------------------------------------------------- /scripts/install-python3.ps1: -------------------------------------------------------------------------------- 1 | choco install python312 -y 2 | -------------------------------------------------------------------------------- /scripts/install-vsbuild-tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/scripts/install-vsbuild-tools.ps1 -------------------------------------------------------------------------------- /scripts/install-zstd.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/scripts/install-zstd.ps1 -------------------------------------------------------------------------------- /smoothcam_cxx.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/smoothcam_cxx.bzl -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwilsnd/SkyrimSE-SmoothCam/HEAD/vcpkg.json --------------------------------------------------------------------------------