├── .gitattributes ├── .gitignore ├── Camera ├── CustomCamera.cs ├── DriverSeatCamera.cs ├── LegacyCamera.cs ├── SmoothCamera.cs └── ThirdPersonCamera.cs ├── Easing └── Easing.cs ├── GTAV_CustomCamera.csproj ├── GTAV_CustomCamera.sln ├── Helper ├── InputR.cs ├── MathR.cs └── Time.cs ├── Properties └── AssemblyInfo.cs ├── Script └── CustomCameraV.cs ├── Transform └── Transform.cs ├── Tween ├── Ease.cs ├── GlideInfo.cs ├── Lerper.cs ├── Tween.cs ├── Tweener.cs └── license.txt ├── UI ├── DebugPanel.cs └── UIex.cs ├── dist ├── GTAV_CustomCamera.ini └── readme.txt ├── license.txt ├── readme.md └── zipdist.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/.gitignore -------------------------------------------------------------------------------- /Camera/CustomCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/Camera/CustomCamera.cs -------------------------------------------------------------------------------- /Camera/DriverSeatCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/Camera/DriverSeatCamera.cs -------------------------------------------------------------------------------- /Camera/LegacyCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/Camera/LegacyCamera.cs -------------------------------------------------------------------------------- /Camera/SmoothCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/Camera/SmoothCamera.cs -------------------------------------------------------------------------------- /Camera/ThirdPersonCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/Camera/ThirdPersonCamera.cs -------------------------------------------------------------------------------- /Easing/Easing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/Easing/Easing.cs -------------------------------------------------------------------------------- /GTAV_CustomCamera.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/GTAV_CustomCamera.csproj -------------------------------------------------------------------------------- /GTAV_CustomCamera.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/GTAV_CustomCamera.sln -------------------------------------------------------------------------------- /Helper/InputR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/Helper/InputR.cs -------------------------------------------------------------------------------- /Helper/MathR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/Helper/MathR.cs -------------------------------------------------------------------------------- /Helper/Time.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/Helper/Time.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Script/CustomCameraV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/Script/CustomCameraV.cs -------------------------------------------------------------------------------- /Transform/Transform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/Transform/Transform.cs -------------------------------------------------------------------------------- /Tween/Ease.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/Tween/Ease.cs -------------------------------------------------------------------------------- /Tween/GlideInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/Tween/GlideInfo.cs -------------------------------------------------------------------------------- /Tween/Lerper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/Tween/Lerper.cs -------------------------------------------------------------------------------- /Tween/Tween.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/Tween/Tween.cs -------------------------------------------------------------------------------- /Tween/Tweener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/Tween/Tweener.cs -------------------------------------------------------------------------------- /Tween/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/Tween/license.txt -------------------------------------------------------------------------------- /UI/DebugPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/UI/DebugPanel.cs -------------------------------------------------------------------------------- /UI/UIex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/UI/UIex.cs -------------------------------------------------------------------------------- /dist/GTAV_CustomCamera.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/dist/GTAV_CustomCamera.ini -------------------------------------------------------------------------------- /dist/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/dist/readme.txt -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/readme.md -------------------------------------------------------------------------------- /zipdist.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraV/HEAD/zipdist.bat --------------------------------------------------------------------------------