Jump to content

Force first person on foot 1.0.0

Automatically switch to first person when on foot, and back to previous view when mounted.
   (0 reviews)

1 Screenshot

About This File

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. I know there is a camera setting in the game that allows you to set your preferred view while on horseback, but it is limited to only the closest third person view.

 

Instructions:

Requires ScriptHookRDR2DotNet and its dependencies: https://www.mod-rdr.com/files/file/17-community-scripthookrdr2-net/

 

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 );
            }
        }
    }
}

 

 

  • Like 1

You may also like

  • Dismember Everyone
    By GetGibbed
       24432   2   0
  • Ped Damage Overhaul
    By HughJanus
       184117   1261   5
  • Lenny's Mod Loader RDR
    By LMS
       2630404   750   6
  • RDR 2 Asi Loader
    By LMS
       1638133   160   5
  • No Bullet Trail Mod
    By LMS
       46007   10   4
  • User Feedback

    Recommended Comments

    evexaa

    Posted

    This is gonna sound really weird. But there is actually a First Person setting in the game that forces you into 3RD Person when you get on a horse. I used this setting when I played on console. Its still there on PC 😉 

    • Like 1
    XaeroDegreaz

    Posted

    Thanks, yeah, but it only uses the close third person camera. I like to play in the furthest third person camera. This mod lets you keep whatever mounted view you want. Perhaps I should have described it a little more clearly.

    Create an account or sign in to comment

    You need to be a member in order to leave a comment

    Create an account

    Sign up for a new account in our community. It's easy!

    Register a new account

    Sign in

    Already have an account? Sign in here.

    Sign In Now
    ×
    ×
    • Create New...