Which platform is your feature request for?
No response
Description
ProjectSettings.cs line 37-41:
#if UNITY_6000_0_OR_NEWER
var assetGuids = AssetDatabase.FindAssetGUIDs("glob:AVProVideo/Editor");
#else
ar assetGuids = AssetDatabase.FindAssets("glob:AVProVideo/Editor");
#endif
According to Unity release notes, FindAssetGUIDs method appears to have been added in Unity 6000.0.54f1:
This causes a compiler error in versions of Unity above 6000.0.0f1 and below Unity 6000.0.54f1:
error CS0117: 'AssetDatabase' does not contain a definition for 'FindAssetGUIDs'
Which platform is your feature request for?
No response
Description
ProjectSettings.csline 37-41:According to Unity release notes, FindAssetGUIDs method appears to have been added in Unity 6000.0.54f1:
This causes a compiler error in versions of Unity above 6000.0.0f1 and below Unity 6000.0.54f1: