Red Dead Redemption 2
0 of 0

File information

Last updated

Original upload

Created by

XaeroDegreaz

Uploaded by

XaeroDegreaz

Virus scan

Safe to use

Tags for this mod

About this mod

This mod will force you into first person when you're on foot. When you're mounted, your view will switch back to whatever view you were in last.

Requirements
Permissions and credits
Changelogs
Props to LMS over at Mod RDR Discord for helping look into ways to manipulate the first person camera.

I created this simple mod because I like to travel in third person while on my horse, but prefer first person on foot. I'm lazy and don't like to have to press the view toggle button every time I change states.

Instructions:

Requires ScriptHookRDR2DotNet: https://www.nexusmods.com/reddeadredemption2/mods/70

Place RedDead2HorseCameraSwap.dll in your "path to Red Dead Redemption 2"/scripts directory.

If the "scripts" directory does not exist, create it.

If you're curious, here are the entire contents of the mod so you can do it yourself if you prefer.

using System;
using RDR2;
using RDR2.Native;

namespace RedDead2HorseCameraSwap
{
public class Main : Script
{
public Main()
{
Interval = 1;
Tick += onTick;
}

private void onTick( object sender, EventArgs e )
{
var player = Game.Player.Character;
if ( player.IsOnFoot )
{
//# _FORCE_FIRST_PERSON_CAM_THIS_FRAME: https://www.mod-rdr.com/nativedb/index/cam/_0x90da5ba5c2635416/
Function.Call( Hash._0x90DA5BA5C2635416 );
}
}
}
}