Skip to content

Commit 8ce8cbb

Browse files
committed
[AUTO]: updating luabinding automatically
1 parent fe14cc6 commit 8ce8cbb

13 files changed

+3720
-2471
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
--------------------------------
3+
-- @module RichElement
4+
--------------------------------
5+
-- @function [parent=#RichElement] init
6+
-- @param self
7+
-- @param #int int
8+
-- @param #color3B_table color3b
9+
-- @param #unsigned char char
10+
-- @return bool#bool ret (return value: bool)
11+
12+
--------------------------------
13+
-- @function [parent=#RichElement] RichElement
14+
-- @param self
15+
16+
return nil
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
2+
--------------------------------
3+
-- @module RichElementCustomNode
4+
--------------------------------
5+
-- @function [parent=#RichElementCustomNode] init
6+
-- @param self
7+
-- @param #int int
8+
-- @param #color3B_table color3b
9+
-- @param #unsigned char char
10+
-- @param #cc.Node node
11+
-- @return bool#bool ret (return value: bool)
12+
13+
--------------------------------
14+
-- @function [parent=#RichElementCustomNode] create
15+
-- @param self
16+
-- @param #int int
17+
-- @param #color3B_table color3b
18+
-- @param #unsigned char char
19+
-- @param #cc.Node node
20+
-- @return RichElementCustomNode#RichElementCustomNode ret (return value: ccui.RichElementCustomNode)
21+
22+
--------------------------------
23+
-- @function [parent=#RichElementCustomNode] RichElementCustomNode
24+
-- @param self
25+
26+
return nil
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
2+
--------------------------------
3+
-- @module RichElementImage
4+
--------------------------------
5+
-- @function [parent=#RichElementImage] init
6+
-- @param self
7+
-- @param #int int
8+
-- @param #color3B_table color3b
9+
-- @param #unsigned char char
10+
-- @param #char char
11+
-- @return bool#bool ret (return value: bool)
12+
13+
--------------------------------
14+
-- @function [parent=#RichElementImage] create
15+
-- @param self
16+
-- @param #int int
17+
-- @param #color3B_table color3b
18+
-- @param #unsigned char char
19+
-- @param #char char
20+
-- @return RichElementImage#RichElementImage ret (return value: ccui.RichElementImage)
21+
22+
--------------------------------
23+
-- @function [parent=#RichElementImage] RichElementImage
24+
-- @param self
25+
26+
return nil
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
2+
--------------------------------
3+
-- @module RichElementText
4+
--------------------------------
5+
-- @function [parent=#RichElementText] init
6+
-- @param self
7+
-- @param #int int
8+
-- @param #color3B_table color3b
9+
-- @param #unsigned char char
10+
-- @param #char char
11+
-- @param #char char
12+
-- @param #float float
13+
-- @return bool#bool ret (return value: bool)
14+
15+
--------------------------------
16+
-- @function [parent=#RichElementText] create
17+
-- @param self
18+
-- @param #int int
19+
-- @param #color3B_table color3b
20+
-- @param #unsigned char char
21+
-- @param #char char
22+
-- @param #char char
23+
-- @param #float float
24+
-- @return RichElementText#RichElementText ret (return value: ccui.RichElementText)
25+
26+
--------------------------------
27+
-- @function [parent=#RichElementText] RichElementText
28+
-- @param self
29+
30+
return nil
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
2+
--------------------------------
3+
-- @module RichText
4+
--------------------------------
5+
-- @function [parent=#RichText] insertElement
6+
-- @param self
7+
-- @param #ccui.RichElement richelement
8+
-- @param #int int
9+
10+
--------------------------------
11+
-- @function [parent=#RichText] setAnchorPoint
12+
-- @param self
13+
-- @param #point_table point
14+
15+
--------------------------------
16+
-- @function [parent=#RichText] pushBackElement
17+
-- @param self
18+
-- @param #ccui.RichElement richelement
19+
20+
--------------------------------
21+
-- @function [parent=#RichText] formatText
22+
-- @param self
23+
24+
--------------------------------
25+
-- @function [parent=#RichText] ignoreContentAdaptWithSize
26+
-- @param self
27+
-- @param #bool bool
28+
29+
--------------------------------
30+
-- @function [parent=#RichText] setVerticalSpace
31+
-- @param self
32+
-- @param #float float
33+
34+
--------------------------------
35+
-- @function [parent=#RichText] getContentSize
36+
-- @param self
37+
-- @return size_table#size_table ret (return value: size_table)
38+
39+
--------------------------------
40+
-- overload function: removeElement(ccui.RichElement)
41+
--
42+
-- overload function: removeElement(int)
43+
--
44+
-- @function [parent=#RichText] removeElement
45+
-- @param self
46+
-- @param #int int
47+
48+
--------------------------------
49+
-- @function [parent=#RichText] create
50+
-- @param self
51+
-- @return RichText#RichText ret (return value: ccui.RichText)
52+
53+
--------------------------------
54+
-- @function [parent=#RichText] RichText
55+
-- @param self
56+
57+
return nil

cocos/scripting/lua-bindings/auto/api/lua_cocos2dx_ui_auto_api.lua

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,29 @@
9191
-- @field [parent=#ccui] Helper#Helper Helper preloaded module
9292

9393

94+
--------------------------------------------------------
95+
-- the ccui RichElement
96+
-- @field [parent=#ccui] RichElement#RichElement RichElement preloaded module
97+
98+
99+
--------------------------------------------------------
100+
-- the ccui RichElementText
101+
-- @field [parent=#ccui] RichElementText#RichElementText RichElementText preloaded module
102+
103+
104+
--------------------------------------------------------
105+
-- the ccui RichElementImage
106+
-- @field [parent=#ccui] RichElementImage#RichElementImage RichElementImage preloaded module
107+
108+
109+
--------------------------------------------------------
110+
-- the ccui RichElementCustomNode
111+
-- @field [parent=#ccui] RichElementCustomNode#RichElementCustomNode RichElementCustomNode preloaded module
112+
113+
114+
--------------------------------------------------------
115+
-- the ccui RichText
116+
-- @field [parent=#ccui] RichText#RichText RichText preloaded module
117+
118+
94119
return nil

0 commit comments

Comments
 (0)