public Hoge hogeData[]; <-これがInspecterで編集出来ない
 public int test[]; <-これはできる
----
正しくは、
 public Hoge[] hogeData;
 public int[] test;