コード例 #1
0
 ///<summary>Checks to see if this AssetData refers to an asset or is NULL</summary>
 public static bool IsValid(AssetData InAssetData) =>
 AssetRegistryHelpers_methods.IsValid_method.Invoke(InAssetData);
コード例 #2
0
 ///<summary>Convert to a SoftObjectPath for loading</summary>
 public static SoftObjectPath ToSoftObjectPath(AssetData InAssetData) =>
 AssetRegistryHelpers_methods.ToSoftObjectPath_method.Invoke(InAssetData);
コード例 #3
0
 ///<summary>Returns true if the this asset is a redirector.</summary>
 public static bool IsRedirector(AssetData InAssetData) =>
 AssetRegistryHelpers_methods.IsRedirector_method.Invoke(InAssetData);
コード例 #4
0
 ///<summary>Gets the value associated with the given tag as a string</summary>
 public static (string, bool) GetTagValue(AssetData InAssetData, Name InTagName) =>
 AssetRegistryHelpers_methods.GetTagValue_method.Invoke(InAssetData, InTagName);
コード例 #5
0
 ///<summary>Returns the full name for the asset in the form: Class ObjectPath</summary>
 public static string GetFullName(AssetData InAssetData) =>
 AssetRegistryHelpers_methods.GetFullName_method.Invoke(InAssetData);
コード例 #6
0
 ///<summary>Get Class</summary>
 public static SubclassOf <UObject> GetClass(AssetData InAssetData) =>
 AssetRegistryHelpers_methods.GetClass_method.Invoke(InAssetData);
コード例 #7
0
 ///<summary>Returns the asset UObject if it is loaded or loads the asset if it is unloaded then returns the result</summary>
 public static UObject GetAsset(AssetData InAssetData) =>
 AssetRegistryHelpers_methods.GetAsset_method.Invoke(InAssetData);