summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/cc.Place.lua
diff options
context:
space:
mode:
Diffstat (limited to 'meta/3rd/Cocos4.0/cc.Place.lua')
-rw-r--r--meta/3rd/Cocos4.0/cc.Place.lua31
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/3rd/Cocos4.0/cc.Place.lua b/meta/3rd/Cocos4.0/cc.Place.lua
new file mode 100644
index 00000000..f98c13a1
--- /dev/null
+++ b/meta/3rd/Cocos4.0/cc.Place.lua
@@ -0,0 +1,31 @@
+
+---@class cc.Place :cc.ActionInstant
+local Place={ }
+cc.Place=Place
+
+
+
+
+---* Initializes a Place action with a position
+---@param pos vec2_table
+---@return boolean
+function Place:initWithPosition (pos) end
+---* Creates a Place action with a position.<br>
+---* param pos A certain position.<br>
+---* return An autoreleased Place object.
+---@param pos vec2_table
+---@return self
+function Place:create (pos) end
+---*
+---@return self
+function Place:clone () end
+---* param time In seconds.
+---@param time float
+---@return self
+function Place:update (time) end
+---*
+---@return self
+function Place:reverse () end
+---*
+---@return self
+function Place:Place () end \ No newline at end of file