From bd345ccfcd2cc5ac668b18914b6391cb5cb8b753 Mon Sep 17 00:00:00 2001 From: ousttrue Date: Tue, 31 Jul 2018 22:11:34 +0900 Subject: [PATCH] #if UNITY_EDITOR --- Scripts/PreExportShaderProps/VRMPreShaderPropExporter.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Scripts/PreExportShaderProps/VRMPreShaderPropExporter.cs b/Scripts/PreExportShaderProps/VRMPreShaderPropExporter.cs index a0e5390de..7cff9cdb6 100644 --- a/Scripts/PreExportShaderProps/VRMPreShaderPropExporter.cs +++ b/Scripts/PreExportShaderProps/VRMPreShaderPropExporter.cs @@ -3,10 +3,11 @@ using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; -using System.Text; using UniGLTF; -using UnityEditor; using UnityEngine; +#if UNITY_EDITOR +using UnityEditor; +#endif namespace VRM