Navigation
API > API/Runtime > API/Runtime/DatasmithCore
References
| Module | DatasmithCore |
| Header | /Engine/Source/Runtime/Datasmith/DatasmithCore/Public/DatasmithUtils.h |
| Include | #include "DatasmithUtils.h" |
Syntax
enum EDSResizeTextureMode
{
NoResize,
NearestPowerOfTwo,
PreviousPowerOfTwo,
NextPowerOfTwo,
}
Values
| Name | Description |
|---|---|
| NoResize | |
| NearestPowerOfTwo | |
| PreviousPowerOfTwo | |
| NextPowerOfTwo |
Remarks
NoResize: Keep original size NearestPowerOfTwo: resizes to the nearest power of two value (recommended) PreviousPowerOfTwo: it decreases the value to the previous power of two NextPowerOfTwo: it increases the value to the next power of two