summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/cc.Component.lua
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2021-02-22 21:05:36 +0800
committer最萌小汐 <sumneko@hotmail.com>2021-02-22 21:05:36 +0800
commit52097b6ee7cc8f5a770eb851902560b5b8592218 (patch)
tree6dcbb53ac0104912e950747a37aac6b25039e862 /meta/3rd/Cocos4.0/cc.Component.lua
parent6839cd530c53387df4d5db61f0cb2e5ed1a87298 (diff)
downloadlua-language-server-52097b6ee7cc8f5a770eb851902560b5b8592218.zip
add meta/3rd with acknowledgement
Diffstat (limited to 'meta/3rd/Cocos4.0/cc.Component.lua')
-rw-r--r--meta/3rd/Cocos4.0/cc.Component.lua45
1 files changed, 45 insertions, 0 deletions
diff --git a/meta/3rd/Cocos4.0/cc.Component.lua b/meta/3rd/Cocos4.0/cc.Component.lua
new file mode 100644
index 00000000..88e0e4f9
--- /dev/null
+++ b/meta/3rd/Cocos4.0/cc.Component.lua
@@ -0,0 +1,45 @@
+
+---@class cc.Component :cc.Ref
+local Component={ }
+cc.Component=Component
+
+
+
+
+---*
+---@param enabled boolean
+---@return self
+function Component:setEnabled (enabled) end
+---*
+---@return self
+function Component:onRemove () end
+---*
+---@param name string
+---@return self
+function Component:setName (name) end
+---*
+---@return boolean
+function Component:isEnabled () end
+---*
+---@param delta float
+---@return self
+function Component:update (delta) end
+---*
+---@return cc.Node
+function Component:getOwner () end
+---*
+---@return boolean
+function Component:init () end
+---*
+---@param owner cc.Node
+---@return self
+function Component:setOwner (owner) end
+---*
+---@return string
+function Component:getName () end
+---*
+---@return self
+function Component:onAdd () end
+---*
+---@return self
+function Component:create () end \ No newline at end of file