This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // MIT License | |
| // Modified from https://gist.github.com/mrwellmann/c9c6bc416143a58d734077ffe57179a3 | |
| using System; | |
| using System.IO; | |
| using System.Linq; | |
| using UnityEditor; | |
| using UnityEngine; | |
| /// <summary> | |
| /// This tool helps to identify and remove empty folders from your Unity 3D project. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #if UNITY_EDITOR_WIN | |
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Text.RegularExpressions; | |
| using UnityEngine; | |
| public class UnifyLineEndings |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| syntax: glob | |
| .DS_Store | |
| *.sln | |
| *.userprefs | |
| *.csproj | |
| *.pidb | |
| *.unitypackage | |
| syntax: regexp | |
| ^Build/.* |