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

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

View File

@@ -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;
```