Skip to content

Instantly share code, notes, and snippets.

using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using System.IO;
public class ObjToLines {
public static TextReader streamFromTextAsset(TextAsset text){
return new StringReader(text.text);
}
@horsman
horsman / FixAssemblys
Created April 29, 2015 16:19
FixUnityAssemblys
using UnityEngine;
using System.Collections.Generic;
using UnityEditor;
using System.Text.RegularExpressions;
using System.IO;
using System.Text;
public class ReimportUnityEngineUI
{
[MenuItem( "Assets/Reimport UI Assemblies", false, 100 )]