UnityEditor.SpriteEditorWindow.HandleApplyRevertDialog C# (CSharp) 메소드

HandleApplyRevertDialog() 개인적인 메소드

private HandleApplyRevertDialog ( ) : void
리턴 void
        private void HandleApplyRevertDialog()
        {
            if (this.textureIsDirty && (this.m_TextureImporter != null))
            {
                if (EditorUtility.DisplayDialog("Unapplied import settings", "Unapplied import settings for '" + this.m_TextureImporter.assetPath + "'", "Apply", "Revert"))
                {
                    this.DoApply();
                }
                else
                {
                    this.DoRevert();
                }
            }
        }