View Single Post
06-14-17, 08:03 AM   #16
tordenflesk
A Deviate Faerie Dragon
Join Date: May 2008
Posts: 18
Originally Posted by krich View Post
Im not using friendly nameplates , im attaching textures to chat bubbles (drawing lines beetwen same raid markers and hiding the bubble itself)
Anyway, seems like blizz is aware if it and in latest ptr they added code referíng bubbles:
Lua Code:
  1. local ChatBubblesLua =
  2. {
  3.     Name = "ChatBubbles",
  4.     Type = "System",
  5.     Namespace = "C_ChatBubbles",
  6.  
  7.     Functions =
  8.     {
  9.         {
  10.             Name = "GetAllChatBubbles",
  11.             Type = "Function",
  12.  
  13.             Arguments =
  14.             {
  15.                 { Name = "includeForbidden", Type = "bool", Nilable = false, Default = false },
  16.             },
  17.  
  18.             Returns =
  19.             {
  20.                 { Name = "chatBubbles", Type = "table", InnerType = "ScriptObject", Nilable = false },
  21.             },
  22.         },
  23.     },
  24.  
  25.     Events =
  26.     {
  27.     },
  28.  
  29.     Tables =
  30.     {
  31.     },
  32. };
  33.  
  34. APIDocumentation:AddDocumentationTable(ChatBubblesLua);

includeForbbiden seems like they protected bubbles aswell in 7.2.5 but as i said, it works the same way it used to work with nameplates , but bubbles are limited to 28yd~
Is this why the font doesn't change in dungeons even though I've set ChatBubbleFont?
  Reply With Quote