From a6d78a1f7ee9de31aeabab369469b8907a1bda90 Mon Sep 17 00:00:00 2001 From: durswd Date: Sat, 30 Nov 2024 11:06:01 +0900 Subject: [PATCH] Fix a bug where Unity cannot build the project --- Dev/Plugin/Assets/Effekseer/Editor/EfkFileImporter.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dev/Plugin/Assets/Effekseer/Editor/EfkFileImporter.cs b/Dev/Plugin/Assets/Effekseer/Editor/EfkFileImporter.cs index 424e7a5..435d5d7 100644 --- a/Dev/Plugin/Assets/Effekseer/Editor/EfkFileImporter.cs +++ b/Dev/Plugin/Assets/Effekseer/Editor/EfkFileImporter.cs @@ -1,4 +1,5 @@ -using System; +#if UNITY_EDITOR +using System; using System.Collections.Generic; using System.IO; using System.Linq; @@ -145,3 +146,4 @@ private static void DisplayErrorDialog(string message) } } } +#endif \ No newline at end of file