133 lines
2.2 KiB
Lua
133 lines
2.2 KiB
Lua
local Glyph =
|
|
{
|
|
Name = "Glyph",
|
|
Type = "System",
|
|
Namespace = "Glyph",
|
|
|
|
Functions =
|
|
{
|
|
{
|
|
Name = "GetGlyphLink",
|
|
Type = "Function",
|
|
|
|
Arguments =
|
|
{
|
|
{ Name = "socket", Type = "number", Nilable = false },
|
|
{ Name = "talentGroup", Type = "number", Nilable = false },
|
|
},
|
|
|
|
Returns =
|
|
{
|
|
{ Name = "link", Type = "hyperlink", Nilable = false },
|
|
},
|
|
},
|
|
{
|
|
Name = "GetGlyphSocketInfo",
|
|
Type = "Function",
|
|
|
|
Arguments =
|
|
{
|
|
{ Name = "socket", Type = "number", Nilable = false },
|
|
{ Name = "talentGroup", Type = "number", Nilable = false },
|
|
},
|
|
|
|
Returns =
|
|
{
|
|
{ Name = "enabled", Type = "bool", Nilable = false },
|
|
{ Name = "glyphType", Type = "number", Nilable = false },
|
|
{ Name = "glyphTooltipIndex", Type = "luaIndex", Nilable = false },
|
|
{ Name = "glyphSpell", Type = "number", Nilable = false },
|
|
{ Name = "icon", Type = "string", Nilable = false },
|
|
},
|
|
},
|
|
{
|
|
Name = "GetNumGlyphSockets",
|
|
Type = "Function",
|
|
|
|
},
|
|
{
|
|
Name = "GlyphMatchesSocket",
|
|
Type = "Function",
|
|
|
|
Arguments =
|
|
{
|
|
{ Name = "socket", Type = "number", Nilable = false },
|
|
},
|
|
|
|
Returns =
|
|
{
|
|
{ Name = "match", Type = "bool", Nilable = false },
|
|
},
|
|
},
|
|
{
|
|
Name = "PlaceGlyphInSocket",
|
|
Type = "Function",
|
|
|
|
Arguments =
|
|
{
|
|
{ Name = "socket", Type = "number", Nilable = false },
|
|
},
|
|
|
|
},
|
|
{
|
|
Name = "RemoveGlyphFromSocket",
|
|
Type = "Function",
|
|
|
|
Arguments =
|
|
{
|
|
{ Name = "socket", Type = "number", Nilable = false },
|
|
},
|
|
|
|
},
|
|
{
|
|
Name = "SpellCanTargetGlyph",
|
|
Type = "Function",
|
|
|
|
Returns =
|
|
{
|
|
{ Name = "canTarget", Type = "bool", Nilable = false },
|
|
},
|
|
},
|
|
},
|
|
|
|
Events =
|
|
{
|
|
{
|
|
Name = "GlyphAdded",
|
|
Type = "Event",
|
|
LiteralName = "GLYPH_ADDED",
|
|
},
|
|
{
|
|
Name = "GlyphDisabled",
|
|
Type = "Event",
|
|
LiteralName = "GLYPH_DISABLED",
|
|
},
|
|
{
|
|
Name = "GlyphEnabled",
|
|
Type = "Event",
|
|
LiteralName = "GLYPH_ENABLED",
|
|
},
|
|
{
|
|
Name = "GlyphRemoved",
|
|
Type = "Event",
|
|
LiteralName = "GLYPH_REMOVED",
|
|
},
|
|
{
|
|
Name = "GlyphUpdated",
|
|
Type = "Event",
|
|
LiteralName = "GLYPH_UPDATED",
|
|
},
|
|
{
|
|
Name = "UseGlyph",
|
|
Type = "Event",
|
|
LiteralName = "USE_GLYPH",
|
|
},
|
|
},
|
|
|
|
Tables =
|
|
{
|
|
},
|
|
};
|
|
|
|
APIDocumentation:AddDocumentationTable(Glyph);
|