This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Fallout: London "Train Crash Crash" Fix | |
This is what worked for us. It may or may not work for you. | |
We installed Fallout 4 GOTY edition from GOG as a fresh install. | |
Install Fallout: London using the installer on GOG Galaxy (Windows) or Heroic Launcher (Linux). | |
Linux Heroic Launcher guide: https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher/wiki/Fallout:-London-guide | |
*** We are not using a mod manager such as MO2 or Vortex. *** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using UnityEngine; | |
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine.EventSystems; | |
//I used ILSpy on the Unity UI dll to copy out the Physicsraycaster code and fix where the ray eminates from (in this case, always the center of the screen) | |
public class InteractionRaycaster : PhysicsRaycaster { | |
[Range(0.0f, 0.5f)] |