背景和头像缺失

This commit is contained in:
2026-03-01 13:51:43 +08:00
parent eaaf7f8c9b
commit 7d2f6399af
5947 changed files with 1441367 additions and 0 deletions

View File

@@ -0,0 +1,85 @@
--------------------------------
-- @module Repeat
-- @extend ActionInterval
-- @parent_module cc
--------------------------------
-- Sets the inner action.<br>
-- param action The inner action.
-- @function [parent=#Repeat] setInnerAction
-- @param self
-- @param #cc.FiniteTimeAction action
-- @return Repeat#Repeat self (return value: cc.Repeat)
--------------------------------
-- initializes a Repeat action. Times is an unsigned integer between 1 and pow(2,30)
-- @function [parent=#Repeat] initWithAction
-- @param self
-- @param #cc.FiniteTimeAction pAction
-- @param #unsigned int times
-- @return bool#bool ret (return value: bool)
--------------------------------
-- Gets the inner action.<br>
-- return The inner action.
-- @function [parent=#Repeat] getInnerAction
-- @param self
-- @return FiniteTimeAction#FiniteTimeAction ret (return value: cc.FiniteTimeAction)
--------------------------------
-- Creates a Repeat action. Times is an unsigned integer between 1 and pow(2,30).<br>
-- param action The action needs to repeat.<br>
-- param times The repeat times.<br>
-- return An autoreleased Repeat object.
-- @function [parent=#Repeat] create
-- @param self
-- @param #cc.FiniteTimeAction action
-- @param #unsigned int times
-- @return Repeat#Repeat ret (return value: cc.Repeat)
--------------------------------
--
-- @function [parent=#Repeat] startWithTarget
-- @param self
-- @param #cc.Node target
-- @return Repeat#Repeat self (return value: cc.Repeat)
--------------------------------
--
-- @function [parent=#Repeat] reverse
-- @param self
-- @return Repeat#Repeat ret (return value: cc.Repeat)
--------------------------------
--
-- @function [parent=#Repeat] clone
-- @param self
-- @return Repeat#Repeat ret (return value: cc.Repeat)
--------------------------------
--
-- @function [parent=#Repeat] stop
-- @param self
-- @return Repeat#Repeat self (return value: cc.Repeat)
--------------------------------
-- param dt In seconds.
-- @function [parent=#Repeat] update
-- @param self
-- @param #float dt
-- @return Repeat#Repeat self (return value: cc.Repeat)
--------------------------------
--
-- @function [parent=#Repeat] isDone
-- @param self
-- @return bool#bool ret (return value: bool)
--------------------------------
--
-- @function [parent=#Repeat] Repeat
-- @param self
-- @return Repeat#Repeat self (return value: cc.Repeat)
return nil