├── .gitattributes ├── .gitignore ├── AlternateConversationCamera.sln ├── AlternateConversationCamera.vcxproj ├── AlternateConversationCamera.vcxproj.filters ├── Camera.cpp ├── Camera.h ├── Controls.cpp ├── Controls.h ├── Graphics.cpp ├── Graphics.h ├── Havok.cpp ├── Havok.h ├── LICENSE.md ├── Menus.cpp ├── Menus.h ├── ObjectRef.cpp ├── ObjectRef.h ├── PatternScanner.h ├── README.md ├── ScaleformUtils.cpp ├── ScaleformUtils.h ├── Settings.cpp ├── Settings.h ├── Shader.h ├── Utils.cpp ├── Utils.h ├── exports.def └── main.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NasiRawon/AlternateConversationCamera/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NasiRawon/AlternateConversationCamera/HEAD/.gitignore -------------------------------------------------------------------------------- /AlternateConversationCamera.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NasiRawon/AlternateConversationCamera/HEAD/AlternateConversationCamera.sln -------------------------------------------------------------------------------- /AlternateConversationCamera.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NasiRawon/AlternateConversationCamera/HEAD/AlternateConversationCamera.vcxproj -------------------------------------------------------------------------------- /AlternateConversationCamera.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NasiRawon/AlternateConversationCamera/HEAD/AlternateConversationCamera.vcxproj.filters -------------------------------------------------------------------------------- /Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NasiRawon/AlternateConversationCamera/HEAD/Camera.cpp -------------------------------------------------------------------------------- /Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NasiRawon/AlternateConversationCamera/HEAD/Camera.h -------------------------------------------------------------------------------- /Controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NasiRawon/AlternateConversationCamera/HEAD/Controls.cpp -------------------------------------------------------------------------------- /Controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NasiRawon/AlternateConversationCamera/HEAD/Controls.h -------------------------------------------------------------------------------- /Graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NasiRawon/AlternateConversationCamera/HEAD/Graphics.cpp -------------------------------------------------------------------------------- /Graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NasiRawon/AlternateConversationCamera/HEAD/Graphics.h -------------------------------------------------------------------------------- /Havok.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NasiRawon/AlternateConversationCamera/HEAD/Havok.cpp -------------------------------------------------------------------------------- /Havok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NasiRawon/AlternateConversationCamera/HEAD/Havok.h -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NasiRawon/AlternateConversationCamera/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Menus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NasiRawon/AlternateConversationCamera/HEAD/Menus.cpp -------------------------------------------------------------------------------- /Menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NasiRawon/AlternateConversationCamera/HEAD/Menus.h -------------------------------------------------------------------------------- /ObjectRef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NasiRawon/AlternateConversationCamera/HEAD/ObjectRef.cpp -------------------------------------------------------------------------------- /ObjectRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NasiRawon/AlternateConversationCamera/HEAD/ObjectRef.h -------------------------------------------------------------------------------- /PatternScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NasiRawon/AlternateConversationCamera/HEAD/PatternScanner.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NasiRawon/AlternateConversationCamera/HEAD/README.md -------------------------------------------------------------------------------- /ScaleformUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NasiRawon/AlternateConversationCamera/HEAD/ScaleformUtils.cpp -------------------------------------------------------------------------------- /ScaleformUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NasiRawon/AlternateConversationCamera/HEAD/ScaleformUtils.h -------------------------------------------------------------------------------- /Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NasiRawon/AlternateConversationCamera/HEAD/Settings.cpp -------------------------------------------------------------------------------- /Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NasiRawon/AlternateConversationCamera/HEAD/Settings.h -------------------------------------------------------------------------------- /Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NasiRawon/AlternateConversationCamera/HEAD/Shader.h -------------------------------------------------------------------------------- /Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NasiRawon/AlternateConversationCamera/HEAD/Utils.cpp -------------------------------------------------------------------------------- /Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NasiRawon/AlternateConversationCamera/HEAD/Utils.h -------------------------------------------------------------------------------- /exports.def: -------------------------------------------------------------------------------- 1 | LIBRARY "AlternateConversationCamera" 2 | EXPORTS 3 | SKSEPlugin_Load -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NasiRawon/AlternateConversationCamera/HEAD/main.cpp --------------------------------------------------------------------------------