@@ -15,9 +15,6 @@ public static class FindObjectUtility
1515 /// <summary>
1616 /// Returns the first object matching the specified type.
1717 /// </summary>
18- /// <remarks>
19- /// If Unity >= 2021.3.18, calls FindFirstObjectByType. Otherwise calls FindObjectOfType.
20- /// </remarks>
2118 /// <param name="includeInactive">If true, inactive objects will be included in the search. False by default.</param>
2219 public static T FindFirstObjectByType < T > ( bool includeInactive = false ) where T : Component
2320 {
@@ -27,9 +24,6 @@ public static T FindFirstObjectByType<T>(bool includeInactive = false) where T :
2724 /// <summary>
2825 /// Returns an object matching the specified type.
2926 /// </summary>
30- /// <remarks>
31- /// If Unity >= 2021.3.18, calls FindAnyObjectByType. Otherwise calls FindObjectOfType.
32- /// </remarks>
3327 /// <param name="includeInactive">If true, inactive objects will be included in the search. False by default.</param>
3428 public static T FindAnyObjectByType < T > ( bool includeInactive = false ) where T : Component
3529 {
@@ -39,9 +33,6 @@ public static T FindAnyObjectByType<T>(bool includeInactive = false) where T : C
3933 /// <summary>
4034 /// Returns all objects matching the specified type.
4135 /// </summary>
42- /// <remarks>
43- /// If Unity >= 2021.3.18, calls FindObjectsByType. Otherwise calls FindObjectsOfType.
44- /// </remarks>
4536 /// <param name="includeInactive">If true, inactive objects will be included in the search. False by default.</param>
4637 /// <param name="sort">If false, results will not sorted by InstanceID. True by default.</param>
4738 public static T [ ] FindObjectsByType < T > ( bool includeInactive = false , bool sort = true ) where T : Component
@@ -52,9 +43,6 @@ public static T[] FindObjectsByType<T>(bool includeInactive = false, bool sort =
5243 /// <summary>
5344 /// Returns all objects matching the specified type.
5445 /// </summary>
55- /// <remarks>
56- /// If Unity >= 2021.3.18, calls FindObjectsByType. Otherwise calls FindObjectsOfType.
57- /// </remarks>
5846 /// <param name="includeInactive">If true, inactive objects will be included in the search. False by default.</param>
5947 /// <param name="sort">If false, results will not sorted by InstanceID. True by default.</param>
6048 /// <param name="type">The type to search for.</param>
0 commit comments