My program doesn't have bugs. It just develops random features.
UE3:UIComp_DrawImage (UT3)
Object >> Component >> UIComponent >> UIComp_DrawComponents >> UIComp_DrawImage |
Contents
- 1 Properties
- 2 Native functions
- 2.1 DisableCustomColor
- 2.2 DisableCustomCoordinates
- 2.3 DisableCustomFormatting
- 2.4 DisableCustomOpacity
- 2.5 DisableCustomPadding
- 2.6 GetAppliedImageStyle
- 2.7 GetImage
- 2.8 GetStyleResolverTag
- 2.9 NotifyResolveStyle
- 2.10 SetColor
- 2.11 SetCoordinates
- 2.12 SetFormatting
- 2.13 SetImage
- 2.14 SetOpacity
- 2.15 SetPadding
- 2.16 SetStyleResolverTag
- Package:
- Engine
- Within class:
- UIObject
- Implemented interfaces:
- CustomPropertyItemHandler, UIStyleResolver
- Direct subclasses:
- UIComp_DrawTeamColoredImage, UIComp_UTDrawStateImage
- This class in other games:
- UDK
This is an auto-generated page and may need human attention. Please remove the {{autogenerated}} tag if the page seems reasonably complete or replace it with the {{expand}} tag if the page is not yet complete. |
This component encapsulates rendering a UITexture for widgets. It is responsible for managing any image formatting data that is required for a particular widget (thus inappropriate for storage in UIStyles).
The style used for rendering the ImageRef is defined by whichever widget owns this component. It is the widget's responsibility to call ApplyImageStyle when the widget receives a call to OnStyleResolved for the UIStyleReference which is intended to be used as the style for this image.
Copyright 1998-2007 Epic Games, Inc. All Rights Reserved
Properties[edit]
Property group 'StyleOverride'[edit]
ImageRef[edit]
Type: UITexture
Modifiers: instanced, editinlineuse
The utility wrapper for the image that this component should render. Automatically created by the component when given an material/texture to render.
StyleCustomization[edit]
Type: UIRoot.UIImageStyleOverride
Contains values for customizing and overriding rendering and formatting values designated by this component's style.
Default value:
Member | Value | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
DrawColor |
|
||||||||||
Formatting[0] |
|
||||||||||
Formatting[1] |
|
||||||||||
Opacity | 1.0 |
Internal variables[edit]
ImageStyle[edit]
Type: UIRoot.UIStyleReference
Modifiers: private
The style to use for rendering this component's image. If the style is invalid, the component will use the owning widget's PrimaryStyle, if possible.
Default value:
Member | Value |
---|---|
DefaultStyleTag | 'DefaultImageStyle' |
RequiredStyleClass | Class'Engine.UIStyle_Image' |
StyleResolverTag[edit]
Type: name
The tag used to fulfill the UIStyleResolver interface's GetStyleResolverTag method. Value should be set by the owning widget.
Default value: 'Image Style'
Native functions[edit]
DisableCustomColor[edit]
Disables image color customization allowing the image to use the values from the applied style.
DisableCustomCoordinates[edit]
Disables image coordinate customization allowing the image to use the values from the applied style.
DisableCustomFormatting[edit]
Disables image formatting customization allowing the image to use the values from the applied style.
DisableCustomOpacity[edit]
Disables the custom opacity level for this comp
DisableCustomPadding[edit]
Disables the custom padding for this component.
GetAppliedImageStyle[edit]
Returns the image style data being used by this image rendering component. If the component's ImageStyle is not set, the style data will be pulled from the owning widget's primary style.
Parameters:
- DesiredMenuState - the menu state for the style data to retrieve; if not speicified, uses the owning widget's current menu state.
Returns:
- the image style data used to render this component's image for the specified menu state.
Note: noexport because we the native version is also handles optionally resolving the image style data from the active skin, so it takes a few more parameters.
GetImage[edit]
Returns the texture or material assigned to this component.
GetStyleResolverTag[edit]
Specified by: UIStyleResolver.GetStyleResolverTag
Returns the tag assigned to this UIStyleResolver by the owning widget
NotifyResolveStyle[edit]
Specified by: UIStyleResolver.NotifyResolveStyle
Resolves the image style for this image rendering component.
Parameters:
- ActiveSkin - the skin the use for resolving the style reference.
- bClearExistingValue - if TRUE, style references will be invalidated first.
- CurrentMenuState - the menu state to use for resolving the style data; if not specified, uses the current menu state of the owning widget.
- StyleProperty - if specified, only the style reference corresponding to the specified property will be resolved; otherwise, all style references will be resolved.
SetColor[edit]
Enables image color customization and changes the component's override color to the value specified.
Parameters:
- NewColor - the color to use for rendering this component's image
SetCoordinates[edit]
Enables image coordinate customization and changes the component's override coordinates to the value specified.
Parameters:
- NewCoordinates - the UV coordinates to use for rendering this component's image
SetFormatting[edit]
Enables image formatting customization and changes the component's formatting override data to the value specified.
Parameters:
- Orientation - indicates which orientation to modify
- NewFormattingData - the new value to use for rendering this component's image.
SetImage[edit]
Changes the image for this component, creating the wrapper UITexture if necessary.
Parameters:
- NewImage - the new texture or material to use in this component
SetOpacity[edit]
Enables a custom opacity and changes the component's override opacity to the value specified.
Parameters:
- NewOpacity - the alpha to use for rendering this component's string
SetPadding[edit]
Enables custom padding and changes the component's override padding to the value specified.
Parameters:
- HorizontalPadding - new vertical padding value to use (assuming a screen height of DEFAULT_SIZE_Y); will be scaled based on actual resolution. Specify -1 to indicate that VerticalPadding should not be changed (useful when changing only the horizontal padding)
SetStyleResolverTag[edit]
Specified by: UIStyleResolver.SetStyleResolverTag
Changes the tag assigned to the UIStyleResolver to the specified value.
Returns:
- TRUE if the name was changed successfully; FALSE otherwise.