mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-01-06 14:45:06 +08:00
42ca90a6bc
Closes: #571
18 lines
330 B
C#
18 lines
330 B
C#
#region
|
|
|
|
using System;
|
|
|
|
#endregion
|
|
|
|
namespace nadena.dev.modular_avatar.core.armature_lock
|
|
{
|
|
internal static class DeferDestroy
|
|
{
|
|
internal static void DeferDestroyObj(IDisposable obj)
|
|
{
|
|
#if UNITY_EDITOR
|
|
UnityEditor.EditorApplication.delayCall += () => obj.Dispose();
|
|
#endif
|
|
}
|
|
}
|
|
} |