WoW:API GetQuestBackgroundMaterial: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
m (Move page script moved page API GetQuestBackgroundMaterial to API GetQuestBackgroundMaterial without leaving a redirect) |
||
(3 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{wowapi}} | |||
Returns the material string associated with the particular quest. The material string is non-nil if this quest uses a custom texture other than the default "Parchment" texture. | |||
Returns the material string associated with the particular quest. | |||
GetQuestBackgroundMaterial(); | GetQuestBackgroundMaterial(); | ||
Line 13: | Line 12: | ||
;''Returns'' | ;''Returns'' | ||
:String | :String material | ||
:; | :;material : The material string for this quest, or nil if the default, "Parchment", is to be used. | ||
---- | ---- | ||
;''Example'' | ;''Example'' | ||
local | local material = GetQuestBackgroundMaterial(); | ||
;''Result'' | ;''Result'' | ||
" | nil -- This quest uses the default material, "Parchment" | ||
---- | ---- | ||
Line 28: | Line 27: | ||
: Returns the material string associated with the particular quest. | : Returns the material string associated with the particular quest. | ||
:This texture is used to paint the background of the Blizzard Quest Frame. It does not appear in the Quest Log, but only when initially reading, accepting or handing in the quest. | |||
Latest revision as of 04:46, 15 August 2023
← WoW API < GetQuestBackgroundMaterial
Returns the material string associated with the particular quest. The material string is non-nil if this quest uses a custom texture other than the default "Parchment" texture.
GetQuestBackgroundMaterial();
- Arguments
- none
- Returns
- String material
- material
- The material string for this quest, or nil if the default, "Parchment", is to be used.
- Example
local material = GetQuestBackgroundMaterial();
- Result
nil -- This quest uses the default material, "Parchment"
- Description
- Returns the material string associated with the particular quest.
- This texture is used to paint the background of the Blizzard Quest Frame. It does not appear in the Quest Log, but only when initially reading, accepting or handing in the quest.