private void Awake() { if (!CompatibilityChecker.IsCompatible() || instance != null) { Destroy(this); return; } instance = this; DontDestroyOnLoad(this); print("[RealChute]: Running RealChute " + RCUtils.assemblyVersion); }
private void Awake() { if (!CompatibilityChecker.IsAllCompatible() || instance != null) { Destroy(this); return; } instance = this; DontDestroyOnLoad(this); print("[RealChute]: Running RealChute " + RCUtils.assemblyVersion); }
private void Awake() { if (!CompatibilityChecker.IsAllCompatible() || ((IntPtr.Size == 8) && (Environment.OSVersion.Platform == PlatformID.Win32NT)) || instance != null) { Destroy(this); return; } instance = this; DontDestroyOnLoad(this); print("[RealChute]: Running RealChute " + RCUtils.assemblyVersion); }