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()); } }