#if UNITY_EDITOR using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEditor; namespace MoreMountains.NiceVibrations { /// /// An asset post processor used to compensate for a new bug introduced by Unity in 2019.3.12f1 /// public class MMNVAssetPostProcessor : AssetPostprocessor { /// /// On GeneratedCSProject, we force ReferenceOutputAssembly to true to avoid missing references in VS. /// /// /// /// private static string OnGeneratedCSProject(string path, string content) { return content.Replace("false", "true"); } } } #endif