1
This commit is contained in:
33
Assets/Plugins/HighlightPlus/Runtime/Scripts/Misc.cs
Normal file
33
Assets/Plugins/HighlightPlus/Runtime/Scripts/Misc.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
|
||||
using UnityEngine;
|
||||
using System;
|
||||
|
||||
namespace HighlightPlus {
|
||||
public class Misc {
|
||||
public static T FindObjectOfType<T>(bool includeInactive = false) where T : UnityEngine.Object {
|
||||
#if UNITY_2023_1_OR_NEWER
|
||||
return UnityEngine.Object.FindAnyObjectByType<T>(includeInactive ? FindObjectsInactive.Include : FindObjectsInactive.Exclude);
|
||||
#else
|
||||
return UnityEngine.Object.FindObjectOfType<T>(includeInactive);
|
||||
#endif
|
||||
}
|
||||
|
||||
public static UnityEngine.Object[] FindObjectsOfType(Type type, bool includeInactive = false) {
|
||||
#if UNITY_2023_1_OR_NEWER
|
||||
return UnityEngine.Object.FindObjectsByType(type, includeInactive ? FindObjectsInactive.Include : FindObjectsInactive.Exclude, FindObjectsSortMode.None);
|
||||
#else
|
||||
return UnityEngine.Object.FindObjectsOfType(type, includeInactive);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
public static T[] FindObjectsOfType<T>(bool includeInactive = false) where T : UnityEngine.Object {
|
||||
#if UNITY_2023_1_OR_NEWER
|
||||
return UnityEngine.Object.FindObjectsByType<T>(includeInactive ? FindObjectsInactive.Include : FindObjectsInactive.Exclude, FindObjectsSortMode.None);
|
||||
#else
|
||||
return UnityEngine.Object.FindObjectsOfType<T>(includeInactive);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user