Skip to content

Instantly share code, notes, and snippets.

@exawon
exawon / BitmapFontImporter.cs
Last active July 14, 2016 05:38
Bitmap Font Importer for Unity
// http://forum.unity3d.com/threads/unity-4-6-bitmap-font.265209/
using UnityEngine;
using UnityEditor;
using System.IO;
using System.Xml;
using System.Collections.Generic;
#if BITMAP_FONT_ZIP
// https://dotnetzip.codeplex.com/
@exawon
exawon / MessageSpellChecker.cs
Last active December 29, 2015 09:19
Message Spell Checker for Unity
using UnityEngine;
using UnityEditor;
using UnityEditor.Callbacks;
using System.IO;
using System.Reflection;
public class MessageSpellChecker : AssetPostprocessor
{
static void OnPostprocessAllAssets(string[] importedAssets, string[] deletedAssets, string[] movedAssets, string[] movedFromAssetPaths)
{