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
/* | |
Helper script for loading all prefabs in a directory to a List | |
Not completely by me, found from: https://gist.github.com/HilariousCow/7f301b04c28fdf61e71f | |
With some modifications to return GameObjects instead of Components | |
*/ | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEditor; | |
using System.IO; |