WoW:API GetFacialHairCustomization: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(Created page with '{{wowapi}} Returns the type of facial hair customization available to the character. cType = GetFacialHairCustomization(); == Returns == ; cType : String - Race-dependent, glob…')
 
m (Move page script moved page API GetFacialHairCustomization to API GetFacialHairCustomization without leaving a redirect)
 
(No difference)

Latest revision as of 04:45, 15 August 2023

WoW API < GetFacialHairCustomization

Returns the type of facial hair customization available to the character.

cType = GetFacialHairCustomization();

Returns[edit]

cType
String - Race-dependent, globalized name of the facial hair customization available to the character:
  • "EARRINGS"
  • "FEATURES"
  • "HAIR"
  • "HORNS"
  • "MARKINGS"
  • "NORMAL"
  • "PIERCINGS"
  • "TUSKS"

Details[edit]

  • You may get a localized description of a particular customization by reading the FACIAL_HAIR_cType global variable:
print("You may customize your...", _G["FACIAL_HAIR_" .. GetFacialHairCustomization()]);