Roman bb94ad63ff 1.我添加了fungus包,用来做对话
2.我已经完成了水缸和镜子的交互对话
3.已经找到了该包的输入代码和退出代码,可以自定义厉害的对话了
2021-07-05 22:45:35 +08:00

17 lines
628 B
C#

using UnityEditor;
#if UNITY_2019_3_12
namespace Fungus.EditorUtils
{
//fix for a bug introduced in unity 2019.3.12 that prevents cross asmdef references from showing
// doco and code hinting correctly in vs2019
// https://forum.unity.com/threads/2019-3-12f1-build-errors.880312/
public class SolutionFileFixer : AssetPostprocessor
{
private static string OnGeneratedCSProject(string path, string content)
{
return content.Replace("<ReferenceOutputAssembly>false</ReferenceOutputAssembly>", "<ReferenceOutputAssembly>true</ReferenceOutputAssembly>");
}
}
}
#endif