This file contains 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 System.Collections.Generic; | |
using UnityEditor; | |
using UnityEngine; | |
using UnityEngine.UI; | |
public class FontApplier : EditorWindow | |
{ | |
private static FontApplier assetReferenceFinder = null; | |
private Vector2 scrollPosition; | |
private List<Object> references = new List<Object>(); |
NewerOlder