Simple
Base Class: Element
Derived: Panel
UI.Simple
is the base class for UI.Panel
without the child tracking and enumerating functionality.
It is meant mainly for internal usage, for implementation of other composite controls, not for direct user/script usage.
Instance Properties:
RawImage
: RawImage - [Unsafe
] UnityEngine.UI.RawImage component (auto-created on access).Image
: Image - [Unsafe
] UnityEngine.UI.Image component (auto-created on access).Color
: Color - Background color.Texture
: Texture - [Unsafe
] UnityEngine.Texture of integrated UnityEngine.UI.RawImage.Sprite
: Sprite - [Unsafe
] UnityEngine.Sprite of integrated UnityEngine.UI.Image.ImageType
: Type - [Unsafe
] UnityEngine.UI.Image.Type of integrated UnityEngine.UI.Image. (Sliced by default)Layout
: Layout - Layout (how child elements are placed).LayoutPadding
: LayoutPadding - The combined inner padding and spacing (6 floats in total, set to0f, 3f, 0f, 0f, 3f, 0f
by default).ChildAnchors
: Anchors - This currently controls layout’schildAlignment
andchildForceExpandWidth/Height
, but plan is to use customLayoutComponent
. You can tryAnchors.Fill
(to make all inner elements fill their cell) orAnchors.MiddleLeft/MiddleCenter/UpperLeft...
InnerPadding
: Padding - Inner padding (border left empty inside this panel).InnerSpacing
: Vector2 - Inner spacing (between elements).Padding
: float -InnerPadding.All
- one number if all are the same, or NaN.Spacing
: float - Spacing - one number if both are the same, or NaN.
Instance Methods:
Add()
: Element, element Element- Add new element onto this panel.
Remove()
: Element, element Element- Remove element from this panel.
AddPanel()
: Panel, layout Layout- Add new panel with specified layout.
AddHorizontal()
: Panel - Add new panel with horizontal layout.AddVertical()
: Panel - Add new panel with vertical layout.AddLabel()
: Label, text string- Add new label with specified text.
AddTextBox()
: TextBox, text string- Add new label with specified text.
AddButton()
: Button, text string- Add new button with specified text.
AddButton()
: Button, text string, click Action[Button]- Add new button with specified text and click-action.
AddToggle()
: Button, text string- Add new toggle-button with specified text.
AddToggle()
: Button, text string, click Action[Button]- Add new toggle-button with specified text and click-action.
AddExclusive()
: Button, text string- Add new exclusive toggle-button (radio button) with specified text.
AddExclusive()
: Button, text string, click Action[Button]- Add new exclusive toggle-button with specified text and click-action.
AddExclusive2()
: Button, text string- Add new toggle-button exclusive in parent of this panel with specified text.
AddExclusive2()
: Button, text string, click Action[Button]- Add new toggle-button exclusive in parent of this panel with specified text and click-action.