結論、Resources.LoadAllを使えばサクッとできるのですが、こやつがObject[]のArrayで結果を返してくるので、List型にcastとかやらにゃならん。
たとえばAudioClipを一括ロードする方法がこちら
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
private List<AudioClip> seAudioClips = new List<AudioClip>(); | |
void Awake () { | |
seAudioClips = Resources.LoadAll(filePath, typeof(AudioClip)).Cast<AudioClip>().ToList(); | |
} |
せっかくType ofで種類を指定しているんだから、せめて戻り値AudioClip[]にならんかいな。