From 1eb11251d0104639193264c8978bdd684465012e Mon Sep 17 00:00:00 2001 From: shadeAlex Date: Mon, 2 Aug 2021 15:09:21 +0900 Subject: [PATCH] Tab => Space --- Scripts/Editor/UIParticleEditor.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Scripts/Editor/UIParticleEditor.cs b/Scripts/Editor/UIParticleEditor.cs index 82705df..2187460 100644 --- a/Scripts/Editor/UIParticleEditor.cs +++ b/Scripts/Editor/UIParticleEditor.cs @@ -217,11 +217,11 @@ namespace Coffee.UIExtensions if (stage != null && stage.scene.isLoaded) { #if UNITY_2020_1_OR_NEWER - string prefabAssetPath = stage.assetPath; + string prefabAssetPath = stage.assetPath; #else - string prefabAssetPath = stage.prefabAssetPath; + string prefabAssetPath = stage.prefabAssetPath; #endif - PrefabUtility.SaveAsPrefabAsset(stage.prefabContentsRoot, prefabAssetPath); + PrefabUtility.SaveAsPrefabAsset(stage.prefabContentsRoot, prefabAssetPath); } #endif }