24 lines
664 B
Lua
24 lines
664 B
Lua
---@meta
|
|
|
|
---@class ccui.RichElementNewLine :ccui.RichElement
|
|
local RichElementNewLine={ }
|
|
ccui.RichElementNewLine=RichElementNewLine
|
|
|
|
|
|
|
|
|
|
---* brief Create a RichElementNewLine with various arguments.<br>
|
|
---* param tag A integer tag value.<br>
|
|
---* param color A color in Color3B.<br>
|
|
---* param opacity A opacity in GLubyte.<br>
|
|
---* return A RichElementNewLine instance.
|
|
---@param tag int
|
|
---@param color color3b_table
|
|
---@param opacity unsigned_char
|
|
---@return self
|
|
function RichElementNewLine:create (tag,color,opacity) end
|
|
---* brief Default constructor.<br>
|
|
---* js ctor<br>
|
|
---* lua new
|
|
---@return self
|
|
function RichElementNewLine:RichElementNewLine () end |