Unity中 泛型查找 父物體上全部所要查找的Component 集合

static public T FindInParents<T>(GameObject go) where T : Component { if (go == null) return null; var comp = go.GetComponent<T>(); if (comp != null) return co
相關文章
相關標籤/搜索