From 5e74a2d4a53ae9cbd6a1de73256f8e672ef5451b Mon Sep 17 00:00:00 2001 From: hirose Date: Tue, 17 Dec 2019 22:03:11 +0900 Subject: [PATCH] delete debug.log --- Assets/VRM/UniVRM/Scripts/Format/VRMExportSettings.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Assets/VRM/UniVRM/Scripts/Format/VRMExportSettings.cs b/Assets/VRM/UniVRM/Scripts/Format/VRMExportSettings.cs index 598e996c7..9a51acd6e 100644 --- a/Assets/VRM/UniVRM/Scripts/Format/VRMExportSettings.cs +++ b/Assets/VRM/UniVRM/Scripts/Format/VRMExportSettings.cs @@ -239,18 +239,14 @@ namespace VRM int _group; public RecordDisposer(UnityEngine.Object[] objects, string msg) { - Debug.Log("[Record] Undo.GetCurrentGroup() = " + Undo.GetCurrentGroup()); Undo.IncrementCurrentGroup(); _group = Undo.GetCurrentGroup(); - Debug.Log("[Record] Undo.GetCurrentGroup() = " + Undo.GetCurrentGroup()); Undo.RecordObjects(objects, msg); } public void Dispose() { - Debug.Log("[Dispose] Undo.GetCurrentGroup() = " + Undo.GetCurrentGroup()); Undo.RevertAllDownToGroup(_group); - Debug.Log("[Dispose] Undo.GetCurrentGroup() = " + Undo.GetCurrentGroup()); } }