summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/library/ccui/RichElementCustomNode.lua
blob: c9f03fb44a74831a5cdb6f89ad4acf4d9eb85a72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---@meta

---@class ccui.RichElementCustomNode :ccui.RichElement
local RichElementCustomNode={ }
ccui.RichElementCustomNode=RichElementCustomNode




---* brief Initialize a RichElementCustomNode 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>
---* param customNode A custom node pointer.<br>
---* return True if initialize success, false otherwise.
---@param tag int
---@param color color3b_table
---@param opacity unsigned_char
---@param customNode cc.Node
---@return boolean
function RichElementCustomNode:init (tag,color,opacity,customNode) end
---* brief Create a RichElementCustomNode 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>
---* param customNode A custom node pointer.<br>
---* return A RichElementCustomNode instance.
---@param tag int
---@param color color3b_table
---@param opacity unsigned_char
---@param customNode cc.Node
---@return self
function RichElementCustomNode:create (tag,color,opacity,customNode) end
---* brief Default constructor.<br>
---* js ctor<br>
---* lua new
---@return self
function RichElementCustomNode:RichElementCustomNode () end