Navigation
API > API/Plugins > API/Plugins/MutableRuntime > API/Plugins/MutableRuntime/FImage
These set of flags are used to cache information for images at runtime.
| Name | EImageFlags |
| Type | enum |
| Header File | /Engine/Plugins/Mutable/Source/MutableRuntime/Public/MuR/Image.h |
| Include Path | #include "MuR/Image.h" |
Syntax
enum EImageFlags
{
IF_IS_PLAIN_COLOUR_VALID = 1 << 0,
IF_IS_PLAIN_COLOUR = 1 << 1,
IF_CANNOT_BE_SCALED = 1 << 2,
IF_HAS_RELEVANCY_MAP = 1 << 3,
IF_IS_REFERENCE = 1 << 4,
IF_IS_FORCELOAD = 1 << 5,
}
Values
| Name | Remarks |
|---|---|
| IF_IS_PLAIN_COLOUR_VALID | Set if the next flag has been calculated and its value is valid. |
| IF_IS_PLAIN_COLOUR | If the previous flag is set and this one too, the image is single colour. |
| IF_CANNOT_BE_SCALED | If this is set, the image shouldn't be scaled: it's contents is resoultion-dependent. |
| IF_HAS_RELEVANCY_MAP | If this is set, the image has an updated relevancy map. This flag is not persisent. |
| IF_IS_REFERENCE | If this is set, this is a reference to an external image, and the ReferenceID is valid. |
| IF_IS_FORCELOAD | For reference images, this indicates that they should be loaded into full images as soon as they are generated. |