跳至主要內容

F15.AssetLoad的几种方法

Mr.Si大约 1 分钟u++

头像
资源加载的几种写法

前置

头像

食用本文建议先了解类和对象的介绍!直通车

异步

//全局Handle
private:
	TSharedPtr<FStreamableHandle> Handle;
void UDataDefinitionManager::AsyncCollectionDefinitions()
{
	TArray<FPrimaryAssetId> AssetIds;
	const TArray<FName> LoadBundles;
	
	UKismetSystemLibrary::GetPrimaryAssetIdList(FPrimaryAssetType(CollectionDefinitionTypeName), AssetIds);

	if (AssetIds.IsEmpty())
	{
		UE_LOG(LogTemp, Warning, TEXT("No assets found for type %s"), *CollectionDefinitionTypeName.ToString());
		return;
	}
	
	UnloadAssets();
	
	UAssetManager& Manager = UAssetManager::Get();
	
	const FStreamableDelegate& NewDelegate = FStreamableDelegate::CreateUObject(this, &UDataDefinitionManager::CollectionCompleted);
	
	Handle = Manager.LoadPrimaryAssets(AssetIds,LoadBundles,NewDelegate);
	
}

void UDataDefinitionManager::CollectionCompleted()
{
	TArray<UObject*> Loaded;

	const UAssetManager& Manager = UAssetManager::Get();
	//也可以直接
	Manager.GetPrimaryAssetObjectList(FPrimaryAssetType(CollectionDefinitionTypeName),Loaded);

	if(!Handle.IsValid()) return;
	Handle->GetLoadedAssets(Loaded);
	
	if(Loaded.IsEmpty()) return;
	
	CachedFragments.Empty();
	for (UObject* LoadedObject : Loaded)
	{
		if (auto DataDefinition = Cast<UDataDefinition>(LoadedObject))
		{
			CachedFragments.Add(DataDefinition->Name,DataDefinition);
		}
	}
	OnDefinitionsLoaded.Broadcast();
}

头像
对应的蓝图节点

问题

头像
为什么资产加载后不需要实例化?
头像

Handle->GetLoadedAsset() 返回加载完成的资产,已经是实例化的对象,它返回都是 uobject

头像
可是有时候我们会在这种资产中配置对象,这个对象为什么也被实例化了?

2025/0322 补充

头像
定义的类中需要满足以下条件:
  1. 使用的类型反射宏UPROPERTY(Instanced) ,必须标记为Instanced
  2. 对应的对象反射宏UCLASS(DefaultToInstanced, EditInlineNew, Abstract),必须标记为EditInlineNew
  3. 注意类中的SoftPtr需要手动异步加载
头像
6666

同步

参考文档

https://www.cnblogs.com/shiroe/p/14710066.htmlopen in new window

官方文档open in new window

官方直播open in new window

https://qiita.com/Zi_su/items/81dc5b5e29a96ad2ceccopen in new window

https://jdelezenne.github.io/Codex/UE4/Assets%20Streaming.htmlopen in new window