>>868
>>870
色々調べた結果こういうメソッドを適当なユーティリティクラスに追加すればいい感じだわ
public static T[] FindObjectsOfInterface<T> : class{

return GameObject.FindObjectsOfType<Component>().Select(n => n as T).Where(t => t != null).ToArray();

}