UnityEditor.PackageImport.DestroyCreatedIcons C# (CSharp) 메소드

DestroyCreatedIcons() 개인적인 메소드

private DestroyCreatedIcons ( ) : void
리턴 void
        private void DestroyCreatedIcons()
        {
            if (s_Preview != null)
            {
                UnityEngine.Object.DestroyImmediate(s_Preview);
                s_Preview = null;
                s_LastPreviewPath = null;
            }
            if (s_PackageIcon != null)
            {
                UnityEngine.Object.DestroyImmediate(s_PackageIcon);
                s_PackageIcon = null;
            }
        }