Skip to content

Instantly share code, notes, and snippets.

@shole
Created August 27, 2019 09:41
Show Gist options
  • Save shole/cb439d7164c102b0dd981e7a88919bc4 to your computer and use it in GitHub Desktop.
Save shole/cb439d7164c102b0dd981e7a88919bc4 to your computer and use it in GitHub Desktop.
using UnityEngine;
using UnityEditor;
using System.Threading;
// Unity randomly loads wrong culture which breaks decimal symbols and
// C# file parsing functions.... Fix it manually cause unity is a dick
[InitializeOnLoad]
public class Startup {
static Startup() {
Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("en-us");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment