| Value | Meaning |
|---|---|
| flagRaw1 | This UIElement draws to the Raw layer and as such onDrawRaw should be called when dirtied. When calling setDirty(UILayer.guessFromFlags), the Raw layer alone will be invalidated. |
| flagPBR2 | This UIElement draws to the PBR layer and as such onDrawPBR should be called when dirtied. Important: setDirty(UILayer.guessFromFlags) will lead to BOTH onDrawPBR and onDrawRaw to be called sucessively. |
| flagAnimated4 | This UIElement is animated and as such the onAnimate callback should be called regularly. |
| flagDrawAloneRaw8 | Is not drawn in parallel with other widgets, when drawn to the Raw layer. |
| flagDrawAlonePBR16 | Is not drawn in parallel with other widgets, when drawn to the PBR layer. |