Skip to content

Instantly share code, notes, and snippets.

View MatthewMaker's full-sized avatar

Matt "Trip" Maker MatthewMaker

View GitHub Profile
@MatthewMaker
MatthewMaker / .hgignore
Created October 22, 2012 14:39 — forked from darktable/.hgignore
hg: Starter hgignore file for Unity3D projects
syntax: glob
.DS_Store
*.sln
*.userprefs
*.csproj
*.pidb
*.unitypackage
syntax: regexp
^Build/.*
@MatthewMaker
MatthewMaker / UnifyLineEndings.cs
Created July 22, 2018 20:28 — forked from samoatesgames/UnifyLineEndings.cs
A script to unify the line endings of Unity3D scripts files
#if UNITY_EDITOR_WIN
using System;
using System.Collections.Generic;
using System.IO;
using System.Text.RegularExpressions;
using UnityEngine;
public class UnifyLineEndings
// 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.