Fallout 4
0 of 0

File information

Last updated

Original upload

Created by

Cyan49

Uploaded by

cyan49

Virus scan

Safe to use

Mod articles

  • For modders: Why should you use GardenOfEden.Is3rdPersonVisible()

    In Papyrus, you want to return whether the player is in the first person camera. You'll probably find "GetAnimationVariableBool("IsFirstPerson") == 1", which at first glance looks okay to use. However, at some point you will receive reports from a few users that the mod has stopped working. I will explain why this issue occurs, why it doesn't happen for everyone, and the solution.

    "GetAnimationVariableBool("IsFirstPerson")", this works, until the player enters and exits Vertibird. After that, "IsFirstPerson" gets stuck at false (i.e. third person) and, as far as I know, is only fixed by the player entering power armor. You can see it with the console command "Player.GetGraphVariableInt IsFirstPerson".

    There are two solutions here, the latter is better but requires...