WoW:XML/Gradient

From AddOn Studio
< XML
Revision as of 05:28, 23 September 2012 by Bear (talk | contribs) (Created page with "{{uixml}} Gradient defines a color visible gradient. == Inheritance == Inherited by: none, Inherits: none, Defined in: multiple == Elements == * MinColor (...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

XML UI ← XML types < Gradient

Gradient defines a visible color gradient.

Inheritance

Inherited by: none, Inherits: none, Defined in: multiple

Elements

Attributes

Summary

Example

<Frame name="MyFrame">
  <Layers>
    <Layer>
      <Texture>
        <Size x="100" y="100" />
        <Gradient orientation="HORIZONTAL">
          <MinColor a="1" r="0" g="0" b="0"/>
          <MaxColor a="1" r="1" g="1" b="1"/>
        </Gradient>
      </Texture>
    </Layer>
  </Layers>
</Frame>

This example will show a opaque gradient texture, fading from black to white horizontally.