Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
mNo edit summary
 
No edit summary
 
Line 1: Line 1:
  +
{{widgetmethod}}
−
Leader of the [[Defias Brotherhood]] in [[Northshire]]. Has a guard with him at all times.
 
   
  +
'''CreateTexture''' is a method on [[XML/Frame|Frame]] objects that creates and returns a new [[XML/Texture|Texture]]. CreateTexture allows Lua to create textures that would otherwise only be available to XML. This method also lets developers the option to reuse virtual textures declared in XML.
−
[[Category:Humans|Padfoot]]
 
  +
−
[[Category:Named Mobs|Padfoot]]
 
  +
Frame:CreateTexture(["textureName"[, "layer"]][, "inheritsFrom"])
−
[[Category:Zone:Elwynn Forest|Padfoot]]
 
  +
  +
== Parameters ==
  +
  +
:;textureName : String - Name of the newly created texture. If nil, no name is assigned. The function will also set a global variable of this name to point to newly created texture.
  +
:;layer : String - The [[layer]] to use.
  +
:;inheritsFrom : String - a comma-delimited list of names of virtual frames to inherit from (the same as in XML). If nil, no frames will be inherited. These frames cannot be frames that were created using this function, they must be created using XML with '''virtual="true"''' in the tag.
  +
  +
== Usage ==
  +
Generally, either use the [[API Frame SetBackdrop|SetBackdrop]] function or use code similar to the following to set a solid color background:
  +
  +
FRAME.texture = FRAME:CreateTexture()
  +
FRAME.texture:[[API Frame SetAllPoints|SetAllPoints]](FRAME)
  +
FRAME.texture:[[API Texture SetTexture|SetTexture]](r,g,b[,a])
  +
  +
The game will not find image files that did not exist when it was started, so you may need to restart the game for the texture to appear.

Revision as of 13:54, 11 January 2011

CreateTexture is a method on Frame objects that creates and returns a new Texture. CreateTexture allows Lua to create textures that would otherwise only be available to XML. This method also lets developers the option to reuse virtual textures declared in XML.

 Frame:CreateTexture(["textureName"[, "layer"]][, "inheritsFrom"])

Parameters

textureName
String - Name of the newly created texture. If nil, no name is assigned. The function will also set a global variable of this name to point to newly created texture.
layer
String - The layer to use.
inheritsFrom
String - a comma-delimited list of names of virtual frames to inherit from (the same as in XML). If nil, no frames will be inherited. These frames cannot be frames that were created using this function, they must be created using XML with virtual="true" in the tag.

Usage

Generally, either use the SetBackdrop function or use code similar to the following to set a solid color background:

FRAME.texture = FRAME:CreateTexture()
FRAME.texture:SetAllPoints(FRAME)
FRAME.texture:SetTexture(r,g,b[,a])

The game will not find image files that did not exist when it was started, so you may need to restart the game for the texture to appear.