summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/library/ccs/ComAttribute.lua
blob: 34cf927028151b0b39b1f8096a624083504f9305 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
---@meta

---@class ccs.ComAttribute :cc.Component
local ComAttribute={ }
ccs.ComAttribute=ComAttribute




---* 
---@param key string
---@param def float
---@return float
function ComAttribute:getFloat (key,def) end
---* 
---@param key string
---@param def string
---@return string
function ComAttribute:getString (key,def) end
---* 
---@param key string
---@param value float
---@return self
function ComAttribute:setFloat (key,value) end
---* 
---@param key string
---@param value string
---@return self
function ComAttribute:setString (key,value) end
---* 
---@param key string
---@param def boolean
---@return boolean
function ComAttribute:getBool (key,def) end
---* 
---@param key string
---@param value int
---@return self
function ComAttribute:setInt (key,value) end
---* 
---@param jsonFile string
---@return boolean
function ComAttribute:parse (jsonFile) end
---* 
---@param key string
---@param def int
---@return int
function ComAttribute:getInt (key,def) end
---* 
---@param key string
---@param value boolean
---@return self
function ComAttribute:setBool (key,value) end
---* 
---@return self
function ComAttribute:create () end
---* 
---@return cc.Ref
function ComAttribute:createInstance () end
---* 
---@return boolean
function ComAttribute:init () end
---* 
---@param r void
---@return boolean
function ComAttribute:serialize (r) end