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
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); | |
} |
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
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 )] |