vault backup: 2024-02-19 16:48:56

This commit is contained in:
BlueRose 2024-02-19 16:48:56 +08:00
parent 9d215009ca
commit 732cca0a71
2 changed files with 10 additions and 1 deletions

@ -181,7 +181,7 @@ const USubsurfaceProfile* SubsurfaceProfileRT;
## UMaterialInterface
```c++
uint8 bOverrideSubsurfaceProfile:1;
uint8 bOverrideSubsurfaceProfile:1;//UE5转移至UMaterialInstance中
TObjectPtr<class USubsurfaceProfile> SubsurfaceProfile;
@ -207,4 +207,10 @@ USubsurfaceProfile* UMaterial::GetSubsurfaceProfile_Internal() const
checkSlow(IsInGameThread());
return SubsurfaceProfile;
}
```
## UMaterialInstance
```c++
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = MaterialInstance)
uint8 bOverrideSubsurfaceProfile:1;
```

@ -425,3 +425,6 @@ Export options:
# 解决Blender导出问题的根骨骼问题
使用Blender的**Better Fbx Importer & Exporter** addon就可以解决问题。
# UModel提取声音教程