Struct amethyst_ui::UiTransform[][src]

pub struct UiTransform {
    pub id: String,
    pub local_x: f32,
    pub local_y: f32,
    pub local_z: f32,
    pub width: f32,
    pub height: f32,
    pub tab_order: i32,
    pub global_x: f32,
    pub global_y: f32,
    pub global_z: f32,
    pub scale_mode: ScaleMode,
    pub opaque: bool,
    // some fields omitted
}

The UiTransform represents the transformation of a ui element. Values are in pixel and the position is calculated from the top left of the screen to the center of the ui element's area.

Fields

An identifier. Serves no purpose other than to help you distinguish between UI elements.

X coordinate, 0 is the left edge of the screen, while the width of the screen in pixel is the right edge. Centered in the middle of the ui element.

Y coordinate, 0 is the top edge of the screen, while the height of the screen in pixel is the bottom edge. Centered in the middle of the ui element.

Z order, entities with a lower Z order will be rendered on top of entities with a higher Z order.

The width of this UI element in pixel.

The height of this UI element in pixel.

The UI element tab order. When the player presses tab the UI focus will shift to the UI element with the next highest tab order, or if another element with the same tab_order as this one exists they are ordered according to Entity creation order. Shift-tab walks this ordering backwards.

Global x position set by the UiParentSystem and UiLayoutSystem systems.

Global y position set by the UiParentSystem and UiLayoutSystem systems.

Global z position set by the UiParentSystem and UiLayoutSystem systems.

The scale mode indicates if the position is in pixel or is relative (%) (WIP!) to the parent's size.

Indicates if actions on the ui can go through this element. If set to false, the element will behaves as if it was transparent and will let events go to the next element (for example, the text on a button).

Methods

impl UiTransform
[src]

Creates a new UiTransform. By default, it is considered opaque.

Checks if the input position is in the UiTransform rectangle. Uses local coordinates (ignores layouting).

Checks if the input position is in the UiTransform rectangle.

Currently unused. Will be implemented in a future PR.

Sets the opaque variable to false, allowing ui events to go through this ui element.

Trait Implementations

impl Clone for UiTransform
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for UiTransform
[src]

Formats the value using the given formatter. Read more

impl Component for UiTransform
[src]

Associated storage type for this component.

Auto Trait Implementations

impl Send for UiTransform

impl Sync for UiTransform