mirror of https://github.com/axmolengine/axmol.git
Merge commit 'refs/pull/5871/head' of https://github.com/cocos2d/cocos2d-x into luamerage
This commit is contained in:
commit
aef2ccac11
|
@ -1 +1 @@
|
|||
936b6bad063ed7529710ca0edf9290b051097b23
|
||||
cdf995f006df19aee04cd2fc336dee13a7821e03
|
|
@ -446,7 +446,7 @@ bool Label::setBMFontFilePath(const std::string& bmfontFilePath, const Point& im
|
|||
reset();
|
||||
return false;
|
||||
}
|
||||
|
||||
_bmFontPath = bmfontFilePath;
|
||||
setFontAtlas(newAtlas);
|
||||
_currentLabelType = LabelType::BMFONT;
|
||||
|
||||
|
@ -457,6 +457,17 @@ void Label::setFontDefinition(const FontDefinition& textDefinition)
|
|||
{
|
||||
reset();
|
||||
_fontDefinition = textDefinition;
|
||||
#if (CC_TARGET_PLATFORM != CC_PLATFORM_ANDROID) && (CC_TARGET_PLATFORM != CC_PLATFORM_IOS)
|
||||
setColor(_fontDefinition._fontFillColor);
|
||||
_fontDefinition._fontFillColor = Color3B::WHITE;
|
||||
#else
|
||||
if ( !textDefinition._shadow._shadowEnabled && !textDefinition._stroke._strokeEnabled)
|
||||
{
|
||||
setColor(_fontDefinition._fontFillColor);
|
||||
_fontDefinition._fontFillColor = Color3B::WHITE;
|
||||
}
|
||||
#endif
|
||||
|
||||
_fontName = textDefinition._fontName;
|
||||
_fontSize = textDefinition._fontSize;
|
||||
_contentDirty = true;
|
||||
|
@ -624,17 +635,7 @@ void Label::alignText()
|
|||
}
|
||||
}
|
||||
|
||||
int index;
|
||||
for (int ctr = 0; ctr < _limitShowCount; ++ctr)
|
||||
{
|
||||
if (_lettersInfo[ctr].def.validDefinition)
|
||||
{
|
||||
updateSpriteWithLetterDefinition(_lettersInfo[ctr].def,textures[_lettersInfo[ctr].def.textureID]);
|
||||
_reusedLetter->setPosition(_lettersInfo[ctr].position);
|
||||
index = _batchNodes[_lettersInfo[ctr].def.textureID]->getTextureAtlas()->getTotalQuads();
|
||||
_batchNodes[_lettersInfo[ctr].def.textureID]->insertQuadFromSprite(_reusedLetter,index);
|
||||
}
|
||||
}
|
||||
updateQuads();
|
||||
|
||||
updateColor();
|
||||
}
|
||||
|
@ -691,16 +692,30 @@ bool Label::setCurrentString(unsigned short *stringToSet)
|
|||
return true;
|
||||
}
|
||||
|
||||
void Label::updateSpriteWithLetterDefinition(const FontLetterDefinition &theDefinition, Texture2D *theTexture)
|
||||
void Label::updateQuads()
|
||||
{
|
||||
_reusedRect.size.height = theDefinition.height;
|
||||
_reusedRect.size.width = theDefinition.width;
|
||||
_reusedRect.origin.x = theDefinition.U;
|
||||
_reusedRect.origin.y = theDefinition.V;
|
||||
int index;
|
||||
for (int ctr = 0; ctr < _limitShowCount; ++ctr)
|
||||
{
|
||||
auto &letterDef = _lettersInfo[ctr].def;
|
||||
|
||||
if(_reusedLetter->getBatchNode() != _batchNodes[theDefinition.textureID])
|
||||
_reusedLetter->setBatchNode(_batchNodes[theDefinition.textureID]);
|
||||
if (letterDef.validDefinition)
|
||||
{
|
||||
_reusedRect.size.height = letterDef.height;
|
||||
_reusedRect.size.width = letterDef.width;
|
||||
_reusedRect.origin.x = letterDef.U;
|
||||
_reusedRect.origin.y = letterDef.V;
|
||||
|
||||
if(_reusedLetter->getBatchNode() != _batchNodes[letterDef.textureID])
|
||||
_reusedLetter->setBatchNode(_batchNodes[letterDef.textureID]);
|
||||
_reusedLetter->setTextureRect(_reusedRect,false,_reusedRect.size);
|
||||
|
||||
_reusedLetter->setPosition(_lettersInfo[ctr].position);
|
||||
index = _batchNodes[letterDef.textureID]->getTextureAtlas()->getTotalQuads();
|
||||
_lettersInfo[ctr].atlasIndex = index;
|
||||
_batchNodes[letterDef.textureID]->insertQuadFromSprite(_reusedLetter,index);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
bool Label::recordLetterInfo(const cocos2d::Point& point,const FontLetterDefinition& letterDef, int spriteIndex)
|
||||
|
@ -1054,35 +1069,41 @@ int Label::getFontSize() const
|
|||
}
|
||||
|
||||
///// PROTOCOL STUFF
|
||||
Sprite * Label::getLetter(int lettetIndex)
|
||||
Sprite * Label::getLetter(int letterIndex)
|
||||
{
|
||||
if (_fontDirty)
|
||||
{
|
||||
updateFont();
|
||||
}
|
||||
if (_contentDirty)
|
||||
{
|
||||
updateContent();
|
||||
}
|
||||
|
||||
if (! _textSprite && lettetIndex < _limitShowCount)
|
||||
if (! _textSprite && letterIndex < _limitShowCount)
|
||||
{
|
||||
if(! _lettersInfo[lettetIndex].def.validDefinition)
|
||||
const auto &letter = _lettersInfo[letterIndex];
|
||||
|
||||
if(! letter.def.validDefinition)
|
||||
return nullptr;
|
||||
|
||||
Sprite* sp = static_cast<Sprite*>(this->getChildByTag(lettetIndex));
|
||||
Sprite* sp = static_cast<Sprite*>(this->getChildByTag(letterIndex));
|
||||
|
||||
if (!sp)
|
||||
{
|
||||
Rect uvRect;
|
||||
uvRect.size.height = _lettersInfo[lettetIndex].def.height;
|
||||
uvRect.size.width = _lettersInfo[lettetIndex].def.width;
|
||||
uvRect.origin.x = _lettersInfo[lettetIndex].def.U;
|
||||
uvRect.origin.y = _lettersInfo[lettetIndex].def.V;
|
||||
uvRect.size.height = letter.def.height;
|
||||
uvRect.size.width = letter.def.width;
|
||||
uvRect.origin.x = letter.def.U;
|
||||
uvRect.origin.y = letter.def.V;
|
||||
|
||||
sp = Sprite::createWithTexture(_fontAtlas->getTexture(_lettersInfo[lettetIndex].def.textureID),uvRect);
|
||||
sp->setBatchNode(this);
|
||||
sp->setAnchorPoint(Point::ANCHOR_MIDDLE);
|
||||
sp->setPosition(Point(_lettersInfo[lettetIndex].position.x+uvRect.size.width/2,_lettersInfo[lettetIndex].position.y-uvRect.size.height/2));
|
||||
sp = Sprite::createWithTexture(_fontAtlas->getTexture(letter.def.textureID),uvRect);
|
||||
sp->setBatchNode(_batchNodes[letter.def.textureID]);
|
||||
sp->setPosition(Point(letter.position.x + uvRect.size.width / 2,
|
||||
letter.position.y - uvRect.size.height / 2));
|
||||
sp->setOpacity(_realOpacity);
|
||||
|
||||
this->addSpriteWithoutQuad(sp, lettetIndex, lettetIndex);
|
||||
_batchNodes[letter.def.textureID]->addSpriteWithoutQuad(sp, letter.atlasIndex, letterIndex);
|
||||
}
|
||||
return sp;
|
||||
}
|
||||
|
@ -1120,7 +1141,7 @@ void Label::computeStringNumLines()
|
|||
|
||||
int Label::getStringLength() const
|
||||
{
|
||||
return _currentUTF16String ? cc_wcslen(_currentUTF16String) : 0;
|
||||
return _currentUTF16String ? cc_wcslen(_currentUTF16String) : _originalUTF8String.length();
|
||||
}
|
||||
|
||||
// RGBA protocol
|
||||
|
@ -1140,34 +1161,28 @@ void Label::setOpacityModifyRGB(bool isOpacityModifyRGB)
|
|||
_reusedLetter->setOpacityModifyRGB(true);
|
||||
}
|
||||
|
||||
void Label::setColor(const Color3B& color)
|
||||
void Label::updateDisplayedColor(const Color3B& parentColor)
|
||||
{
|
||||
_fontDefinition._fontFillColor = color;
|
||||
_displayedColor.r = _realColor.r * parentColor.r/255.0;
|
||||
_displayedColor.g = _realColor.g * parentColor.g/255.0;
|
||||
_displayedColor.b = _realColor.b * parentColor.b/255.0;
|
||||
updateColor();
|
||||
|
||||
if (_textSprite)
|
||||
{
|
||||
updateContent();
|
||||
_textSprite->updateDisplayedColor(_displayedColor);
|
||||
}
|
||||
if (_reusedLetter)
|
||||
{
|
||||
_reusedLetter->setColor(color);
|
||||
}
|
||||
SpriteBatchNode::setColor(color);
|
||||
}
|
||||
|
||||
void Label::updateColor()
|
||||
{
|
||||
Color4B color4( _displayedColor.r, _displayedColor.g, _displayedColor.b, _displayedOpacity );
|
||||
if (_textSprite)
|
||||
{
|
||||
_textSprite->setColor(_displayedColor);
|
||||
_textSprite->setOpacity(_displayedOpacity);
|
||||
}
|
||||
|
||||
if (nullptr == _textureAtlas)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
Color4B color4( _displayedColor.r, _displayedColor.g, _displayedColor.b, _displayedOpacity );
|
||||
|
||||
// special opacity for premultiplied textures
|
||||
if (_isOpacityModifyRGB)
|
||||
{
|
||||
|
|
|
@ -116,6 +116,7 @@ public:
|
|||
virtual bool setTTFConfig(const TTFConfig& ttfConfig);
|
||||
|
||||
virtual bool setBMFontFilePath(const std::string& bmfontFilePath, const Point& imageOffset = Point::ZERO);
|
||||
const std::string& getBMFontFilePath() const { return _bmFontPath;}
|
||||
|
||||
virtual bool setCharMap(const std::string& charMapFile, int itemWidth, int itemHeight, int startCharMap);
|
||||
virtual bool setCharMap(Texture2D* texture, int itemWidth, int itemHeight, int startCharMap);
|
||||
|
@ -204,7 +205,7 @@ public:
|
|||
|
||||
virtual bool isOpacityModifyRGB() const override;
|
||||
virtual void setOpacityModifyRGB(bool isOpacityModifyRGB) override;
|
||||
virtual void setColor(const Color3B& color) override;
|
||||
virtual void updateDisplayedColor(const Color3B& parentColor) override;
|
||||
|
||||
virtual Sprite * getLetter(int lettetIndex);
|
||||
|
||||
|
@ -248,6 +249,7 @@ protected:
|
|||
|
||||
Point position;
|
||||
Size contentSize;
|
||||
int atlasIndex;
|
||||
};
|
||||
enum class LabelType {
|
||||
|
||||
|
@ -282,7 +284,7 @@ protected:
|
|||
bool setOriginalString(unsigned short *stringToSet);
|
||||
void computeStringNumLines();
|
||||
|
||||
void updateSpriteWithLetterDefinition(const FontLetterDefinition &theDefinition, Texture2D *theTexture);
|
||||
void updateQuads();
|
||||
|
||||
virtual void updateColor() override;
|
||||
|
||||
|
@ -295,6 +297,8 @@ protected:
|
|||
void updateFont();
|
||||
void reset();
|
||||
|
||||
std::string _bmFontPath;
|
||||
|
||||
bool _isOpacityModifyRGB;
|
||||
bool _contentDirty;
|
||||
bool _fontDirty;
|
||||
|
|
|
@ -172,16 +172,16 @@ public:
|
|||
For example: a tile map (TMXMap) or a label with lots of characters (LabelBMFont)
|
||||
*/
|
||||
void insertQuadFromSprite(Sprite *sprite, ssize_t index);
|
||||
/* This is the opposite of "addQuadFromSprite.
|
||||
It add the sprite to the children and descendants array, but it doesn't update add it to the texture atlas
|
||||
*/
|
||||
SpriteBatchNode * addSpriteWithoutQuad(Sprite *child, int z, int aTag);
|
||||
protected:
|
||||
/** Updates a quad at a certain index into the texture atlas. The Sprite won't be added into the children array.
|
||||
This method should be called only when you are dealing with very big AtlasSrite and when most of the Sprite won't be updated.
|
||||
For example: a tile map (TMXMap) or a label with lots of characters (LabelBMFont)
|
||||
*/
|
||||
void updateQuadFromSprite(Sprite *sprite, ssize_t index);
|
||||
/* This is the opposite of "addQuadFromSprite.
|
||||
It add the sprite to the children and descendants array, but it doesn't update add it to the texture atlas
|
||||
*/
|
||||
SpriteBatchNode * addSpriteWithoutQuad(Sprite *child, int z, int aTag);
|
||||
|
||||
void updateAtlasIndex(Sprite* sprite, ssize_t* curIndex);
|
||||
void swap(ssize_t oldIndex, ssize_t newIndex);
|
||||
|
|
|
@ -742,7 +742,11 @@ void FileUtils::setSearchResolutionsOrder(const std::vector<std::string>& search
|
|||
|
||||
void FileUtils::addSearchResolutionsOrder(const std::string &order)
|
||||
{
|
||||
_searchResolutionsOrderArray.push_back(order);
|
||||
std::string resOrder = order;
|
||||
if (!resOrder.empty() && resOrder[resOrder.length()-1] != '/')
|
||||
resOrder.append("/");
|
||||
|
||||
_searchResolutionsOrderArray.push_back(resOrder);
|
||||
}
|
||||
|
||||
const std::vector<std::string>& FileUtils::getSearchResolutionsOrder()
|
||||
|
|
|
@ -293,7 +293,7 @@ string FileUtilsWin32::getWritablePath() const
|
|||
// Create directory
|
||||
if (SUCCEEDED(SHCreateDirectoryExA(NULL, ret.c_str(), NULL)))
|
||||
{
|
||||
return ret;
|
||||
return convertPathFormatToUnixStyle(ret);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module Action
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Action] startWithTarget
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module ActionCamera
|
||||
|
||||
--------------------------------
|
||||
-- overload function: setEye(float, float, float)
|
||||
--
|
||||
|
@ -37,6 +38,21 @@
|
|||
-- @param self
|
||||
-- @return kmVec3#kmVec3 ret (return value: kmVec3)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ActionCamera] startWithTarget
|
||||
-- @param self
|
||||
-- @param #cc.Node node
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ActionCamera] clone
|
||||
-- @param self
|
||||
-- @return ActionCamera#ActionCamera ret (return value: cc.ActionCamera)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ActionCamera] reverse
|
||||
-- @param self
|
||||
-- @return ActionCamera#ActionCamera ret (return value: cc.ActionCamera)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ActionCamera] ActionCamera
|
||||
-- @param self
|
||||
|
|
|
@ -1,9 +1,34 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module ActionEase
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ActionEase] getInnerAction
|
||||
-- @param self
|
||||
-- @return ActionInterval#ActionInterval ret (return value: cc.ActionInterval)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ActionEase] startWithTarget
|
||||
-- @param self
|
||||
-- @param #cc.Node node
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ActionEase] clone
|
||||
-- @param self
|
||||
-- @return ActionEase#ActionEase ret (return value: cc.ActionEase)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ActionEase] stop
|
||||
-- @param self
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ActionEase] reverse
|
||||
-- @param self
|
||||
-- @return ActionEase#ActionEase ret (return value: cc.ActionEase)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ActionEase] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,4 +1,30 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module ActionInstant
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ActionInstant] step
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ActionInstant] clone
|
||||
-- @param self
|
||||
-- @return ActionInstant#ActionInstant ret (return value: cc.ActionInstant)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ActionInstant] reverse
|
||||
-- @param self
|
||||
-- @return ActionInstant#ActionInstant ret (return value: cc.ActionInstant)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ActionInstant] isDone
|
||||
-- @param self
|
||||
-- @return bool#bool ret (return value: bool)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ActionInstant] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module ActionInterval
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ActionInterval] getAmplitudeRate
|
||||
-- @param self
|
||||
|
@ -16,4 +17,29 @@
|
|||
-- @param self
|
||||
-- @return float#float ret (return value: float)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ActionInterval] startWithTarget
|
||||
-- @param self
|
||||
-- @param #cc.Node node
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ActionInterval] step
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ActionInterval] clone
|
||||
-- @param self
|
||||
-- @return ActionInterval#ActionInterval ret (return value: cc.ActionInterval)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ActionInterval] reverse
|
||||
-- @param self
|
||||
-- @return ActionInterval#ActionInterval ret (return value: cc.ActionInterval)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ActionInterval] isDone
|
||||
-- @param self
|
||||
-- @return bool#bool ret (return value: bool)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module ActionManager
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ActionManager] getActionByTag
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module ActionManagerEx
|
||||
|
||||
--------------------------------
|
||||
-- overload function: playActionByName(char, char, cc.CallFunc)
|
||||
--
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module ActionObject
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ActionObject] setCurrentTime
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module ActionTween
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ActionTween] initWithDuration
|
||||
-- @param self
|
||||
|
@ -19,4 +20,24 @@
|
|||
-- @param #float float
|
||||
-- @return ActionTween#ActionTween ret (return value: cc.ActionTween)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ActionTween] startWithTarget
|
||||
-- @param self
|
||||
-- @param #cc.Node node
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ActionTween] clone
|
||||
-- @param self
|
||||
-- @return ActionTween#ActionTween ret (return value: cc.ActionTween)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ActionTween] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ActionTween] reverse
|
||||
-- @param self
|
||||
-- @return ActionTween#ActionTween ret (return value: cc.ActionTween)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module Animate
|
||||
|
||||
--------------------------------
|
||||
-- overload function: getAnimation()
|
||||
--
|
||||
|
@ -21,4 +22,28 @@
|
|||
-- @param #cc.Animation animation
|
||||
-- @return Animate#Animate ret (return value: cc.Animate)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Animate] startWithTarget
|
||||
-- @param self
|
||||
-- @param #cc.Node node
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Animate] clone
|
||||
-- @param self
|
||||
-- @return Animate#Animate ret (return value: cc.Animate)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Animate] stop
|
||||
-- @param self
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Animate] reverse
|
||||
-- @param self
|
||||
-- @return Animate#Animate ret (return value: cc.Animate)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Animate] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module Animation
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Animation] getLoops
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module AnimationCache
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#AnimationCache] getAnimation
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module AnimationData
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#AnimationData] getMovement
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module AnimationFrame
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#AnimationFrame] setSpriteFrame
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module Application
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Application] getTargetPlatform
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module Armature
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Armature] getBone
|
||||
-- @param self
|
||||
|
@ -136,6 +137,38 @@
|
|||
-- @param #ccs.Bone bone
|
||||
-- @return Armature#Armature ret (retunr value: ccs.Armature)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Armature] setAnchorPoint
|
||||
-- @param self
|
||||
-- @param #point_table point
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Armature] draw
|
||||
-- @param self
|
||||
-- @param #cc.Renderer renderer
|
||||
-- @param #kmMat4 kmmat4
|
||||
-- @param #bool bool
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Armature] getAnchorPointInPoints
|
||||
-- @param self
|
||||
-- @return point_table#point_table ret (return value: point_table)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Armature] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Armature] getNodeToParentTransform
|
||||
-- @param self
|
||||
-- @return kmMat4#kmMat4 ret (return value: kmMat4)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Armature] getBoundingBox
|
||||
-- @param self
|
||||
-- @return rect_table#rect_table ret (return value: rect_table)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Armature] Armature
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module ArmatureAnimation
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ArmatureAnimation] getSpeedScale
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module ArmatureData
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ArmatureData] addBoneData
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module ArmatureDataManager
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ArmatureDataManager] getAnimationDatas
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module ArmatureDisplayData
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ArmatureDisplayData] create
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module AssetsManager
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#AssetsManager] setStoragePath
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module AtlasNode
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#AtlasNode] updateAtlasValues
|
||||
-- @param self
|
||||
|
@ -44,4 +45,36 @@
|
|||
-- @param #int int
|
||||
-- @return AtlasNode#AtlasNode ret (return value: cc.AtlasNode)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#AtlasNode] draw
|
||||
-- @param self
|
||||
-- @param #cc.Renderer renderer
|
||||
-- @param #kmMat4 kmmat4
|
||||
-- @param #bool bool
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#AtlasNode] isOpacityModifyRGB
|
||||
-- @param self
|
||||
-- @return bool#bool ret (return value: bool)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#AtlasNode] setColor
|
||||
-- @param self
|
||||
-- @param #color3B_table color3b
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#AtlasNode] getColor
|
||||
-- @param self
|
||||
-- @return color3B_table#color3B_table ret (return value: color3B_table)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#AtlasNode] setOpacityModifyRGB
|
||||
-- @param self
|
||||
-- @param #bool bool
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#AtlasNode] setOpacity
|
||||
-- @param self
|
||||
-- @param #unsigned char char
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module BaseData
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#BaseData] getColor
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module BatchNode
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#BatchNode] init
|
||||
-- @param self
|
||||
|
@ -11,4 +12,30 @@
|
|||
-- @param self
|
||||
-- @return BatchNode#BatchNode ret (return value: ccs.BatchNode)
|
||||
|
||||
--------------------------------
|
||||
-- overload function: addChild(cc.Node, int)
|
||||
--
|
||||
-- overload function: addChild(cc.Node)
|
||||
--
|
||||
-- overload function: addChild(cc.Node, int, int)
|
||||
--
|
||||
-- @function [parent=#BatchNode] addChild
|
||||
-- @param self
|
||||
-- @param #cc.Node node
|
||||
-- @param #int int
|
||||
-- @param #int int
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#BatchNode] draw
|
||||
-- @param self
|
||||
-- @param #cc.Renderer renderer
|
||||
-- @param #kmMat4 kmmat4
|
||||
-- @param #bool bool
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#BatchNode] removeChild
|
||||
-- @param self
|
||||
-- @param #cc.Node node
|
||||
-- @param #bool bool
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,4 +1,25 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module BezierBy
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#BezierBy] startWithTarget
|
||||
-- @param self
|
||||
-- @param #cc.Node node
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#BezierBy] clone
|
||||
-- @param self
|
||||
-- @return BezierBy#BezierBy ret (return value: cc.BezierBy)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#BezierBy] reverse
|
||||
-- @param self
|
||||
-- @return BezierBy#BezierBy ret (return value: cc.BezierBy)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#BezierBy] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,4 +1,20 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module BezierTo
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#BezierTo] startWithTarget
|
||||
-- @param self
|
||||
-- @param #cc.Node node
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#BezierTo] clone
|
||||
-- @param self
|
||||
-- @return BezierTo#BezierTo ret (return value: cc.BezierTo)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#BezierTo] reverse
|
||||
-- @param self
|
||||
-- @return BezierTo#BezierTo ret (return value: cc.BezierTo)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module Blink
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Blink] create
|
||||
-- @param self
|
||||
|
@ -8,4 +9,28 @@
|
|||
-- @param #int int
|
||||
-- @return Blink#Blink ret (return value: cc.Blink)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Blink] startWithTarget
|
||||
-- @param self
|
||||
-- @param #cc.Node node
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Blink] clone
|
||||
-- @param self
|
||||
-- @return Blink#Blink ret (return value: cc.Blink)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Blink] stop
|
||||
-- @param self
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Blink] reverse
|
||||
-- @param self
|
||||
-- @return Blink#Blink ret (return value: cc.Blink)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Blink] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module Bone
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Bone] isTransformDirty
|
||||
-- @param self
|
||||
|
@ -187,6 +188,31 @@
|
|||
-- @param #string str
|
||||
-- @return Bone#Bone ret (retunr value: ccs.Bone)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Bone] updateDisplayedColor
|
||||
-- @param self
|
||||
-- @param #color3B_table color3b
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Bone] setLocalZOrder
|
||||
-- @param self
|
||||
-- @param #int int
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Bone] getNodeToWorldTransform
|
||||
-- @param self
|
||||
-- @return kmMat4#kmMat4 ret (return value: kmMat4)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Bone] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Bone] updateDisplayedOpacity
|
||||
-- @param self
|
||||
-- @param #unsigned char char
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Bone] Bone
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module BoneData
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#BoneData] getDisplayData
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module Button
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Button] getTitleText
|
||||
-- @param self
|
||||
|
@ -127,6 +128,31 @@
|
|||
-- @param self
|
||||
-- @return Ref#Ref ret (return value: cc.Ref)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Button] setAnchorPoint
|
||||
-- @param self
|
||||
-- @param #point_table point
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Button] getVirtualRenderer
|
||||
-- @param self
|
||||
-- @return Node#Node ret (return value: cc.Node)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Button] getDescription
|
||||
-- @param self
|
||||
-- @return string#string ret (return value: string)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Button] getContentSize
|
||||
-- @param self
|
||||
-- @return size_table#size_table ret (return value: size_table)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Button] ignoreContentAdaptWithSize
|
||||
-- @param self
|
||||
-- @param #bool bool
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Button] Button
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module CCBAnimationManager
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CCBAnimationManager] moveAnimationsFromNode
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module CCBReader
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CCBReader] addOwnerOutletName
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module CallFunc
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CallFunc] execute
|
||||
-- @param self
|
||||
|
@ -15,4 +16,19 @@
|
|||
-- @param self
|
||||
-- @param #cc.Ref ref
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CallFunc] clone
|
||||
-- @param self
|
||||
-- @return CallFunc#CallFunc ret (return value: cc.CallFunc)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CallFunc] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CallFunc] reverse
|
||||
-- @param self
|
||||
-- @return CallFunc#CallFunc ret (return value: cc.CallFunc)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,6 +1,27 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module CardinalSplineBy
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CardinalSplineBy] startWithTarget
|
||||
-- @param self
|
||||
-- @param #cc.Node node
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CardinalSplineBy] clone
|
||||
-- @param self
|
||||
-- @return CardinalSplineBy#CardinalSplineBy ret (return value: cc.CardinalSplineBy)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CardinalSplineBy] updatePosition
|
||||
-- @param self
|
||||
-- @param #point_table point
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CardinalSplineBy] reverse
|
||||
-- @param self
|
||||
-- @return CardinalSplineBy#CardinalSplineBy ret (return value: cc.CardinalSplineBy)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CardinalSplineBy] CardinalSplineBy
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module CardinalSplineTo
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CardinalSplineTo] getPoints
|
||||
-- @param self
|
||||
|
@ -19,6 +20,26 @@
|
|||
-- @param #float float
|
||||
-- @return bool#bool ret (return value: bool)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CardinalSplineTo] startWithTarget
|
||||
-- @param self
|
||||
-- @param #cc.Node node
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CardinalSplineTo] clone
|
||||
-- @param self
|
||||
-- @return CardinalSplineTo#CardinalSplineTo ret (return value: cc.CardinalSplineTo)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CardinalSplineTo] reverse
|
||||
-- @param self
|
||||
-- @return CardinalSplineTo#CardinalSplineTo ret (return value: cc.CardinalSplineTo)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CardinalSplineTo] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CardinalSplineTo] CardinalSplineTo
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module CatmullRomBy
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CatmullRomBy] initWithDuration
|
||||
-- @param self
|
||||
|
@ -8,4 +9,14 @@
|
|||
-- @param #point_table pointarray
|
||||
-- @return bool#bool ret (return value: bool)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CatmullRomBy] clone
|
||||
-- @param self
|
||||
-- @return CatmullRomBy#CatmullRomBy ret (return value: cc.CatmullRomBy)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CatmullRomBy] reverse
|
||||
-- @param self
|
||||
-- @return CatmullRomBy#CatmullRomBy ret (return value: cc.CatmullRomBy)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module CatmullRomTo
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CatmullRomTo] initWithDuration
|
||||
-- @param self
|
||||
|
@ -8,4 +9,14 @@
|
|||
-- @param #point_table pointarray
|
||||
-- @return bool#bool ret (return value: bool)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CatmullRomTo] clone
|
||||
-- @param self
|
||||
-- @return CatmullRomTo#CatmullRomTo ret (return value: cc.CatmullRomTo)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CatmullRomTo] reverse
|
||||
-- @param self
|
||||
-- @return CatmullRomTo#CatmullRomTo ret (return value: cc.CatmullRomTo)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module CheckBox
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CheckBox] getSelectedState
|
||||
-- @param self
|
||||
|
@ -61,6 +62,26 @@
|
|||
-- @param self
|
||||
-- @return Ref#Ref ret (return value: cc.Ref)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CheckBox] setAnchorPoint
|
||||
-- @param self
|
||||
-- @param #point_table point
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CheckBox] getVirtualRenderer
|
||||
-- @param self
|
||||
-- @return Node#Node ret (return value: cc.Node)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CheckBox] getDescription
|
||||
-- @param self
|
||||
-- @return string#string ret (return value: string)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CheckBox] getContentSize
|
||||
-- @param self
|
||||
-- @return size_table#size_table ret (return value: size_table)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#CheckBox] CheckBox
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module ClippingNode
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ClippingNode] isInverted
|
||||
-- @param self
|
||||
|
@ -41,4 +42,11 @@
|
|||
-- @param #cc.Node node
|
||||
-- @return ClippingNode#ClippingNode ret (retunr value: cc.ClippingNode)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ClippingNode] visit
|
||||
-- @param self
|
||||
-- @param #cc.Renderer renderer
|
||||
-- @param #kmMat4 kmmat4
|
||||
-- @param #bool bool
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module ComAttribute
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ComAttribute] getFloat
|
||||
-- @param self
|
||||
|
@ -69,4 +70,15 @@
|
|||
-- @param self
|
||||
-- @return Ref#Ref ret (return value: cc.Ref)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ComAttribute] init
|
||||
-- @param self
|
||||
-- @return bool#bool ret (return value: bool)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ComAttribute] serialize
|
||||
-- @param self
|
||||
-- @param #void void
|
||||
-- @return bool#bool ret (return value: bool)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module ComAudio
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ComAudio] stopAllEffects
|
||||
-- @param self
|
||||
|
@ -153,4 +154,25 @@
|
|||
-- @param self
|
||||
-- @return Ref#Ref ret (return value: cc.Ref)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ComAudio] setEnabled
|
||||
-- @param self
|
||||
-- @param #bool bool
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ComAudio] isEnabled
|
||||
-- @param self
|
||||
-- @return bool#bool ret (return value: bool)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ComAudio] serialize
|
||||
-- @param self
|
||||
-- @param #void void
|
||||
-- @return bool#bool ret (return value: bool)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ComAudio] init
|
||||
-- @param self
|
||||
-- @return bool#bool ret (return value: bool)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module ComController
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ComController] create
|
||||
-- @param self
|
||||
|
@ -11,6 +12,26 @@
|
|||
-- @param self
|
||||
-- @return Ref#Ref ret (return value: cc.Ref)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ComController] setEnabled
|
||||
-- @param self
|
||||
-- @param #bool bool
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ComController] isEnabled
|
||||
-- @param self
|
||||
-- @return bool#bool ret (return value: bool)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ComController] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ComController] init
|
||||
-- @param self
|
||||
-- @return bool#bool ret (return value: bool)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ComController] ComController
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module ComRender
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ComRender] setNode
|
||||
-- @param self
|
||||
|
@ -27,4 +28,10 @@
|
|||
-- @param self
|
||||
-- @return Ref#Ref ret (return value: cc.Ref)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ComRender] serialize
|
||||
-- @param self
|
||||
-- @param #void void
|
||||
-- @return bool#bool ret (return value: bool)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module Component
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Component] setEnabled
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module ContourData
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ContourData] init
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module Control
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Control] setEnabled
|
||||
-- @param self
|
||||
|
@ -92,4 +93,14 @@
|
|||
-- @param self
|
||||
-- @return Control#Control ret (return value: cc.Control)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Control] isOpacityModifyRGB
|
||||
-- @param self
|
||||
-- @return bool#bool ret (return value: bool)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Control] setOpacityModifyRGB
|
||||
-- @param self
|
||||
-- @param #bool bool
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module ControlButton
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlButton] isPushed
|
||||
-- @param self
|
||||
|
@ -231,4 +232,49 @@
|
|||
-- @param #float float
|
||||
-- @return ControlButton#ControlButton ret (retunr value: cc.ControlButton)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlButton] onTouchMoved
|
||||
-- @param self
|
||||
-- @param #cc.Touch touch
|
||||
-- @param #cc.Event event
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlButton] onTouchEnded
|
||||
-- @param self
|
||||
-- @param #cc.Touch touch
|
||||
-- @param #cc.Event event
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlButton] setColor
|
||||
-- @param self
|
||||
-- @param #color3B_table color3b
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlButton] getColor
|
||||
-- @param self
|
||||
-- @return color3B_table#color3B_table ret (return value: color3B_table)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlButton] onTouchCancelled
|
||||
-- @param self
|
||||
-- @param #cc.Touch touch
|
||||
-- @param #cc.Event event
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlButton] setOpacity
|
||||
-- @param self
|
||||
-- @param #unsigned char char
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlButton] getOpacity
|
||||
-- @param self
|
||||
-- @return unsigned char#unsigned char ret (return value: unsigned char)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlButton] onTouchBegan
|
||||
-- @param self
|
||||
-- @param #cc.Touch touch
|
||||
-- @param #cc.Event event
|
||||
-- @return bool#bool ret (return value: bool)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module ControlColourPicker
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlColourPicker] setEnabled
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module ControlHuePicker
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlHuePicker] setEnabled
|
||||
-- @param self
|
||||
|
@ -65,6 +66,19 @@
|
|||
-- @param #point_table point
|
||||
-- @return ControlHuePicker#ControlHuePicker ret (return value: cc.ControlHuePicker)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlHuePicker] onTouchMoved
|
||||
-- @param self
|
||||
-- @param #cc.Touch touch
|
||||
-- @param #cc.Event event
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlHuePicker] onTouchBegan
|
||||
-- @param self
|
||||
-- @param #cc.Touch touch
|
||||
-- @param #cc.Event event
|
||||
-- @return bool#bool ret (return value: bool)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlHuePicker] ControlHuePicker
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module ControlPotentiometer
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlPotentiometer] setPreviousLocation
|
||||
-- @param self
|
||||
|
@ -108,6 +109,36 @@
|
|||
-- @param #char char
|
||||
-- @return ControlPotentiometer#ControlPotentiometer ret (return value: cc.ControlPotentiometer)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlPotentiometer] isTouchInside
|
||||
-- @param self
|
||||
-- @param #cc.Touch touch
|
||||
-- @return bool#bool ret (return value: bool)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlPotentiometer] setEnabled
|
||||
-- @param self
|
||||
-- @param #bool bool
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlPotentiometer] onTouchMoved
|
||||
-- @param self
|
||||
-- @param #cc.Touch touch
|
||||
-- @param #cc.Event event
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlPotentiometer] onTouchEnded
|
||||
-- @param self
|
||||
-- @param #cc.Touch touch
|
||||
-- @param #cc.Event event
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlPotentiometer] onTouchBegan
|
||||
-- @param self
|
||||
-- @param #cc.Touch touch
|
||||
-- @param #cc.Event event
|
||||
-- @return bool#bool ret (return value: bool)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlPotentiometer] ControlPotentiometer
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module ControlSaturationBrightnessPicker
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlSaturationBrightnessPicker] getShadow
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module ControlSlider
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlSlider] getSelectedThumbSprite
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module ControlStepper
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlStepper] setMinusSprite
|
||||
-- @param self
|
||||
|
@ -114,6 +115,25 @@
|
|||
-- @param #cc.Sprite sprite
|
||||
-- @return ControlStepper#ControlStepper ret (return value: cc.ControlStepper)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlStepper] onTouchMoved
|
||||
-- @param self
|
||||
-- @param #cc.Touch touch
|
||||
-- @param #cc.Event event
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlStepper] onTouchEnded
|
||||
-- @param self
|
||||
-- @param #cc.Touch touch
|
||||
-- @param #cc.Event event
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlStepper] onTouchBegan
|
||||
-- @param self
|
||||
-- @param #cc.Touch touch
|
||||
-- @param #cc.Event event
|
||||
-- @return bool#bool ret (return value: bool)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlStepper] ControlStepper
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module ControlSwitch
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlSwitch] setEnabled
|
||||
-- @param self
|
||||
|
@ -62,6 +63,31 @@
|
|||
-- @param #cc.LabelTTF labelttf
|
||||
-- @return ControlSwitch#ControlSwitch ret (retunr value: cc.ControlSwitch)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlSwitch] onTouchMoved
|
||||
-- @param self
|
||||
-- @param #cc.Touch touch
|
||||
-- @param #cc.Event event
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlSwitch] onTouchEnded
|
||||
-- @param self
|
||||
-- @param #cc.Touch touch
|
||||
-- @param #cc.Event event
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlSwitch] onTouchCancelled
|
||||
-- @param self
|
||||
-- @param #cc.Touch touch
|
||||
-- @param #cc.Event event
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlSwitch] onTouchBegan
|
||||
-- @param self
|
||||
-- @param #cc.Touch touch
|
||||
-- @param #cc.Event event
|
||||
-- @return bool#bool ret (return value: bool)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#ControlSwitch] ControlSwitch
|
||||
-- @param self
|
||||
|
|
|
@ -1,10 +1,26 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module DelayTime
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#DelayTime] create
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
-- @return DelayTime#DelayTime ret (return value: cc.DelayTime)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#DelayTime] clone
|
||||
-- @param self
|
||||
-- @return DelayTime#DelayTime ret (return value: cc.DelayTime)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#DelayTime] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#DelayTime] reverse
|
||||
-- @param self
|
||||
-- @return DelayTime#DelayTime ret (return value: cc.DelayTime)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module Director
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#Director] pause
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module DisplayData
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#DisplayData] copy
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module DisplayManager
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#DisplayManager] getDisplayRenderNode
|
||||
-- @param self
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module DrawNode
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#DrawNode] drawQuadraticBezier
|
||||
-- @param self
|
||||
|
@ -58,4 +59,11 @@
|
|||
-- @param self
|
||||
-- @return DrawNode#DrawNode ret (return value: cc.DrawNode)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#DrawNode] draw
|
||||
-- @param self
|
||||
-- @param #cc.Renderer renderer
|
||||
-- @param #kmMat4 kmmat4
|
||||
-- @param #bool bool
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,10 +1,26 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseBackIn
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBackIn] create
|
||||
-- @param self
|
||||
-- @param #cc.ActionInterval actioninterval
|
||||
-- @return EaseBackIn#EaseBackIn ret (return value: cc.EaseBackIn)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBackIn] clone
|
||||
-- @param self
|
||||
-- @return EaseBackIn#EaseBackIn ret (return value: cc.EaseBackIn)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBackIn] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBackIn] reverse
|
||||
-- @param self
|
||||
-- @return ActionEase#ActionEase ret (return value: cc.ActionEase)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,10 +1,26 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseBackInOut
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBackInOut] create
|
||||
-- @param self
|
||||
-- @param #cc.ActionInterval actioninterval
|
||||
-- @return EaseBackInOut#EaseBackInOut ret (return value: cc.EaseBackInOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBackInOut] clone
|
||||
-- @param self
|
||||
-- @return EaseBackInOut#EaseBackInOut ret (return value: cc.EaseBackInOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBackInOut] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBackInOut] reverse
|
||||
-- @param self
|
||||
-- @return EaseBackInOut#EaseBackInOut ret (return value: cc.EaseBackInOut)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,10 +1,26 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseBackOut
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBackOut] create
|
||||
-- @param self
|
||||
-- @param #cc.ActionInterval actioninterval
|
||||
-- @return EaseBackOut#EaseBackOut ret (return value: cc.EaseBackOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBackOut] clone
|
||||
-- @param self
|
||||
-- @return EaseBackOut#EaseBackOut ret (return value: cc.EaseBackOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBackOut] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBackOut] reverse
|
||||
-- @param self
|
||||
-- @return ActionEase#ActionEase ret (return value: cc.ActionEase)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseBezierAction
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBezierAction] setBezierParamer
|
||||
-- @param self
|
||||
|
@ -15,4 +16,19 @@
|
|||
-- @param #cc.ActionInterval actioninterval
|
||||
-- @return EaseBezierAction#EaseBezierAction ret (return value: cc.EaseBezierAction)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBezierAction] clone
|
||||
-- @param self
|
||||
-- @return EaseBezierAction#EaseBezierAction ret (return value: cc.EaseBezierAction)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBezierAction] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBezierAction] reverse
|
||||
-- @param self
|
||||
-- @return EaseBezierAction#EaseBezierAction ret (return value: cc.EaseBezierAction)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,4 +1,15 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseBounce
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBounce] clone
|
||||
-- @param self
|
||||
-- @return EaseBounce#EaseBounce ret (return value: cc.EaseBounce)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBounce] reverse
|
||||
-- @param self
|
||||
-- @return EaseBounce#EaseBounce ret (return value: cc.EaseBounce)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,10 +1,26 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseBounceIn
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBounceIn] create
|
||||
-- @param self
|
||||
-- @param #cc.ActionInterval actioninterval
|
||||
-- @return EaseBounceIn#EaseBounceIn ret (return value: cc.EaseBounceIn)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBounceIn] clone
|
||||
-- @param self
|
||||
-- @return EaseBounceIn#EaseBounceIn ret (return value: cc.EaseBounceIn)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBounceIn] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBounceIn] reverse
|
||||
-- @param self
|
||||
-- @return EaseBounce#EaseBounce ret (return value: cc.EaseBounce)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,10 +1,26 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseBounceInOut
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBounceInOut] create
|
||||
-- @param self
|
||||
-- @param #cc.ActionInterval actioninterval
|
||||
-- @return EaseBounceInOut#EaseBounceInOut ret (return value: cc.EaseBounceInOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBounceInOut] clone
|
||||
-- @param self
|
||||
-- @return EaseBounceInOut#EaseBounceInOut ret (return value: cc.EaseBounceInOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBounceInOut] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBounceInOut] reverse
|
||||
-- @param self
|
||||
-- @return EaseBounceInOut#EaseBounceInOut ret (return value: cc.EaseBounceInOut)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,10 +1,26 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseBounceOut
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBounceOut] create
|
||||
-- @param self
|
||||
-- @param #cc.ActionInterval actioninterval
|
||||
-- @return EaseBounceOut#EaseBounceOut ret (return value: cc.EaseBounceOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBounceOut] clone
|
||||
-- @param self
|
||||
-- @return EaseBounceOut#EaseBounceOut ret (return value: cc.EaseBounceOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBounceOut] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseBounceOut] reverse
|
||||
-- @param self
|
||||
-- @return EaseBounce#EaseBounce ret (return value: cc.EaseBounce)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,10 +1,26 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseCircleActionIn
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseCircleActionIn] create
|
||||
-- @param self
|
||||
-- @param #cc.ActionInterval actioninterval
|
||||
-- @return EaseCircleActionIn#EaseCircleActionIn ret (return value: cc.EaseCircleActionIn)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseCircleActionIn] clone
|
||||
-- @param self
|
||||
-- @return EaseCircleActionIn#EaseCircleActionIn ret (return value: cc.EaseCircleActionIn)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseCircleActionIn] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseCircleActionIn] reverse
|
||||
-- @param self
|
||||
-- @return EaseCircleActionIn#EaseCircleActionIn ret (return value: cc.EaseCircleActionIn)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,10 +1,26 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseCircleActionInOut
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseCircleActionInOut] create
|
||||
-- @param self
|
||||
-- @param #cc.ActionInterval actioninterval
|
||||
-- @return EaseCircleActionInOut#EaseCircleActionInOut ret (return value: cc.EaseCircleActionInOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseCircleActionInOut] clone
|
||||
-- @param self
|
||||
-- @return EaseCircleActionInOut#EaseCircleActionInOut ret (return value: cc.EaseCircleActionInOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseCircleActionInOut] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseCircleActionInOut] reverse
|
||||
-- @param self
|
||||
-- @return EaseCircleActionInOut#EaseCircleActionInOut ret (return value: cc.EaseCircleActionInOut)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,10 +1,26 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseCircleActionOut
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseCircleActionOut] create
|
||||
-- @param self
|
||||
-- @param #cc.ActionInterval actioninterval
|
||||
-- @return EaseCircleActionOut#EaseCircleActionOut ret (return value: cc.EaseCircleActionOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseCircleActionOut] clone
|
||||
-- @param self
|
||||
-- @return EaseCircleActionOut#EaseCircleActionOut ret (return value: cc.EaseCircleActionOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseCircleActionOut] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseCircleActionOut] reverse
|
||||
-- @param self
|
||||
-- @return EaseCircleActionOut#EaseCircleActionOut ret (return value: cc.EaseCircleActionOut)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,10 +1,26 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseCubicActionIn
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseCubicActionIn] create
|
||||
-- @param self
|
||||
-- @param #cc.ActionInterval actioninterval
|
||||
-- @return EaseCubicActionIn#EaseCubicActionIn ret (return value: cc.EaseCubicActionIn)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseCubicActionIn] clone
|
||||
-- @param self
|
||||
-- @return EaseCubicActionIn#EaseCubicActionIn ret (return value: cc.EaseCubicActionIn)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseCubicActionIn] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseCubicActionIn] reverse
|
||||
-- @param self
|
||||
-- @return EaseCubicActionIn#EaseCubicActionIn ret (return value: cc.EaseCubicActionIn)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,10 +1,26 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseCubicActionInOut
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseCubicActionInOut] create
|
||||
-- @param self
|
||||
-- @param #cc.ActionInterval actioninterval
|
||||
-- @return EaseCubicActionInOut#EaseCubicActionInOut ret (return value: cc.EaseCubicActionInOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseCubicActionInOut] clone
|
||||
-- @param self
|
||||
-- @return EaseCubicActionInOut#EaseCubicActionInOut ret (return value: cc.EaseCubicActionInOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseCubicActionInOut] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseCubicActionInOut] reverse
|
||||
-- @param self
|
||||
-- @return EaseCubicActionInOut#EaseCubicActionInOut ret (return value: cc.EaseCubicActionInOut)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,10 +1,26 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseCubicActionOut
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseCubicActionOut] create
|
||||
-- @param self
|
||||
-- @param #cc.ActionInterval actioninterval
|
||||
-- @return EaseCubicActionOut#EaseCubicActionOut ret (return value: cc.EaseCubicActionOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseCubicActionOut] clone
|
||||
-- @param self
|
||||
-- @return EaseCubicActionOut#EaseCubicActionOut ret (return value: cc.EaseCubicActionOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseCubicActionOut] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseCubicActionOut] reverse
|
||||
-- @param self
|
||||
-- @return EaseCubicActionOut#EaseCubicActionOut ret (return value: cc.EaseCubicActionOut)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseElastic
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseElastic] setPeriod
|
||||
-- @param self
|
||||
|
@ -11,4 +12,14 @@
|
|||
-- @param self
|
||||
-- @return float#float ret (return value: float)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseElastic] clone
|
||||
-- @param self
|
||||
-- @return EaseElastic#EaseElastic ret (return value: cc.EaseElastic)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseElastic] reverse
|
||||
-- @param self
|
||||
-- @return EaseElastic#EaseElastic ret (return value: cc.EaseElastic)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseElasticIn
|
||||
|
||||
--------------------------------
|
||||
-- overload function: create(cc.ActionInterval)
|
||||
--
|
||||
|
@ -12,4 +13,19 @@
|
|||
-- @param #float float
|
||||
-- @return EaseElasticIn#EaseElasticIn ret (retunr value: cc.EaseElasticIn)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseElasticIn] clone
|
||||
-- @param self
|
||||
-- @return EaseElasticIn#EaseElasticIn ret (return value: cc.EaseElasticIn)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseElasticIn] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseElasticIn] reverse
|
||||
-- @param self
|
||||
-- @return EaseElastic#EaseElastic ret (return value: cc.EaseElastic)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseElasticInOut
|
||||
|
||||
--------------------------------
|
||||
-- overload function: create(cc.ActionInterval)
|
||||
--
|
||||
|
@ -12,4 +13,19 @@
|
|||
-- @param #float float
|
||||
-- @return EaseElasticInOut#EaseElasticInOut ret (retunr value: cc.EaseElasticInOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseElasticInOut] clone
|
||||
-- @param self
|
||||
-- @return EaseElasticInOut#EaseElasticInOut ret (return value: cc.EaseElasticInOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseElasticInOut] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseElasticInOut] reverse
|
||||
-- @param self
|
||||
-- @return EaseElasticInOut#EaseElasticInOut ret (return value: cc.EaseElasticInOut)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseElasticOut
|
||||
|
||||
--------------------------------
|
||||
-- overload function: create(cc.ActionInterval)
|
||||
--
|
||||
|
@ -12,4 +13,19 @@
|
|||
-- @param #float float
|
||||
-- @return EaseElasticOut#EaseElasticOut ret (retunr value: cc.EaseElasticOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseElasticOut] clone
|
||||
-- @param self
|
||||
-- @return EaseElasticOut#EaseElasticOut ret (return value: cc.EaseElasticOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseElasticOut] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseElasticOut] reverse
|
||||
-- @param self
|
||||
-- @return EaseElastic#EaseElastic ret (return value: cc.EaseElastic)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,10 +1,26 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseExponentialIn
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseExponentialIn] create
|
||||
-- @param self
|
||||
-- @param #cc.ActionInterval actioninterval
|
||||
-- @return EaseExponentialIn#EaseExponentialIn ret (return value: cc.EaseExponentialIn)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseExponentialIn] clone
|
||||
-- @param self
|
||||
-- @return EaseExponentialIn#EaseExponentialIn ret (return value: cc.EaseExponentialIn)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseExponentialIn] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseExponentialIn] reverse
|
||||
-- @param self
|
||||
-- @return ActionEase#ActionEase ret (return value: cc.ActionEase)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,10 +1,26 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseExponentialInOut
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseExponentialInOut] create
|
||||
-- @param self
|
||||
-- @param #cc.ActionInterval actioninterval
|
||||
-- @return EaseExponentialInOut#EaseExponentialInOut ret (return value: cc.EaseExponentialInOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseExponentialInOut] clone
|
||||
-- @param self
|
||||
-- @return EaseExponentialInOut#EaseExponentialInOut ret (return value: cc.EaseExponentialInOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseExponentialInOut] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseExponentialInOut] reverse
|
||||
-- @param self
|
||||
-- @return EaseExponentialInOut#EaseExponentialInOut ret (return value: cc.EaseExponentialInOut)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,10 +1,26 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseExponentialOut
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseExponentialOut] create
|
||||
-- @param self
|
||||
-- @param #cc.ActionInterval actioninterval
|
||||
-- @return EaseExponentialOut#EaseExponentialOut ret (return value: cc.EaseExponentialOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseExponentialOut] clone
|
||||
-- @param self
|
||||
-- @return EaseExponentialOut#EaseExponentialOut ret (return value: cc.EaseExponentialOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseExponentialOut] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseExponentialOut] reverse
|
||||
-- @param self
|
||||
-- @return ActionEase#ActionEase ret (return value: cc.ActionEase)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseIn
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseIn] create
|
||||
-- @param self
|
||||
|
@ -8,4 +9,19 @@
|
|||
-- @param #float float
|
||||
-- @return EaseIn#EaseIn ret (return value: cc.EaseIn)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseIn] clone
|
||||
-- @param self
|
||||
-- @return EaseIn#EaseIn ret (return value: cc.EaseIn)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseIn] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseIn] reverse
|
||||
-- @param self
|
||||
-- @return EaseIn#EaseIn ret (return value: cc.EaseIn)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseInOut
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseInOut] create
|
||||
-- @param self
|
||||
|
@ -8,4 +9,19 @@
|
|||
-- @param #float float
|
||||
-- @return EaseInOut#EaseInOut ret (return value: cc.EaseInOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseInOut] clone
|
||||
-- @param self
|
||||
-- @return EaseInOut#EaseInOut ret (return value: cc.EaseInOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseInOut] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseInOut] reverse
|
||||
-- @param self
|
||||
-- @return EaseInOut#EaseInOut ret (return value: cc.EaseInOut)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseOut
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseOut] create
|
||||
-- @param self
|
||||
|
@ -8,4 +9,19 @@
|
|||
-- @param #float float
|
||||
-- @return EaseOut#EaseOut ret (return value: cc.EaseOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseOut] clone
|
||||
-- @param self
|
||||
-- @return EaseOut#EaseOut ret (return value: cc.EaseOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseOut] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseOut] reverse
|
||||
-- @param self
|
||||
-- @return EaseOut#EaseOut ret (return value: cc.EaseOut)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,10 +1,26 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseQuadraticActionIn
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuadraticActionIn] create
|
||||
-- @param self
|
||||
-- @param #cc.ActionInterval actioninterval
|
||||
-- @return EaseQuadraticActionIn#EaseQuadraticActionIn ret (return value: cc.EaseQuadraticActionIn)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuadraticActionIn] clone
|
||||
-- @param self
|
||||
-- @return EaseQuadraticActionIn#EaseQuadraticActionIn ret (return value: cc.EaseQuadraticActionIn)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuadraticActionIn] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuadraticActionIn] reverse
|
||||
-- @param self
|
||||
-- @return EaseQuadraticActionIn#EaseQuadraticActionIn ret (return value: cc.EaseQuadraticActionIn)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,10 +1,26 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseQuadraticActionInOut
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuadraticActionInOut] create
|
||||
-- @param self
|
||||
-- @param #cc.ActionInterval actioninterval
|
||||
-- @return EaseQuadraticActionInOut#EaseQuadraticActionInOut ret (return value: cc.EaseQuadraticActionInOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuadraticActionInOut] clone
|
||||
-- @param self
|
||||
-- @return EaseQuadraticActionInOut#EaseQuadraticActionInOut ret (return value: cc.EaseQuadraticActionInOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuadraticActionInOut] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuadraticActionInOut] reverse
|
||||
-- @param self
|
||||
-- @return EaseQuadraticActionInOut#EaseQuadraticActionInOut ret (return value: cc.EaseQuadraticActionInOut)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,10 +1,26 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseQuadraticActionOut
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuadraticActionOut] create
|
||||
-- @param self
|
||||
-- @param #cc.ActionInterval actioninterval
|
||||
-- @return EaseQuadraticActionOut#EaseQuadraticActionOut ret (return value: cc.EaseQuadraticActionOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuadraticActionOut] clone
|
||||
-- @param self
|
||||
-- @return EaseQuadraticActionOut#EaseQuadraticActionOut ret (return value: cc.EaseQuadraticActionOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuadraticActionOut] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuadraticActionOut] reverse
|
||||
-- @param self
|
||||
-- @return EaseQuadraticActionOut#EaseQuadraticActionOut ret (return value: cc.EaseQuadraticActionOut)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,10 +1,26 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseQuarticActionIn
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuarticActionIn] create
|
||||
-- @param self
|
||||
-- @param #cc.ActionInterval actioninterval
|
||||
-- @return EaseQuarticActionIn#EaseQuarticActionIn ret (return value: cc.EaseQuarticActionIn)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuarticActionIn] clone
|
||||
-- @param self
|
||||
-- @return EaseQuarticActionIn#EaseQuarticActionIn ret (return value: cc.EaseQuarticActionIn)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuarticActionIn] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuarticActionIn] reverse
|
||||
-- @param self
|
||||
-- @return EaseQuarticActionIn#EaseQuarticActionIn ret (return value: cc.EaseQuarticActionIn)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,10 +1,26 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseQuarticActionInOut
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuarticActionInOut] create
|
||||
-- @param self
|
||||
-- @param #cc.ActionInterval actioninterval
|
||||
-- @return EaseQuarticActionInOut#EaseQuarticActionInOut ret (return value: cc.EaseQuarticActionInOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuarticActionInOut] clone
|
||||
-- @param self
|
||||
-- @return EaseQuarticActionInOut#EaseQuarticActionInOut ret (return value: cc.EaseQuarticActionInOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuarticActionInOut] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuarticActionInOut] reverse
|
||||
-- @param self
|
||||
-- @return EaseQuarticActionInOut#EaseQuarticActionInOut ret (return value: cc.EaseQuarticActionInOut)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,10 +1,26 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseQuarticActionOut
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuarticActionOut] create
|
||||
-- @param self
|
||||
-- @param #cc.ActionInterval actioninterval
|
||||
-- @return EaseQuarticActionOut#EaseQuarticActionOut ret (return value: cc.EaseQuarticActionOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuarticActionOut] clone
|
||||
-- @param self
|
||||
-- @return EaseQuarticActionOut#EaseQuarticActionOut ret (return value: cc.EaseQuarticActionOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuarticActionOut] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuarticActionOut] reverse
|
||||
-- @param self
|
||||
-- @return EaseQuarticActionOut#EaseQuarticActionOut ret (return value: cc.EaseQuarticActionOut)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,10 +1,26 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseQuinticActionIn
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuinticActionIn] create
|
||||
-- @param self
|
||||
-- @param #cc.ActionInterval actioninterval
|
||||
-- @return EaseQuinticActionIn#EaseQuinticActionIn ret (return value: cc.EaseQuinticActionIn)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuinticActionIn] clone
|
||||
-- @param self
|
||||
-- @return EaseQuinticActionIn#EaseQuinticActionIn ret (return value: cc.EaseQuinticActionIn)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuinticActionIn] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuinticActionIn] reverse
|
||||
-- @param self
|
||||
-- @return EaseQuinticActionIn#EaseQuinticActionIn ret (return value: cc.EaseQuinticActionIn)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,10 +1,26 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseQuinticActionInOut
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuinticActionInOut] create
|
||||
-- @param self
|
||||
-- @param #cc.ActionInterval actioninterval
|
||||
-- @return EaseQuinticActionInOut#EaseQuinticActionInOut ret (return value: cc.EaseQuinticActionInOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuinticActionInOut] clone
|
||||
-- @param self
|
||||
-- @return EaseQuinticActionInOut#EaseQuinticActionInOut ret (return value: cc.EaseQuinticActionInOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuinticActionInOut] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuinticActionInOut] reverse
|
||||
-- @param self
|
||||
-- @return EaseQuinticActionInOut#EaseQuinticActionInOut ret (return value: cc.EaseQuinticActionInOut)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,10 +1,26 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseQuinticActionOut
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuinticActionOut] create
|
||||
-- @param self
|
||||
-- @param #cc.ActionInterval actioninterval
|
||||
-- @return EaseQuinticActionOut#EaseQuinticActionOut ret (return value: cc.EaseQuinticActionOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuinticActionOut] clone
|
||||
-- @param self
|
||||
-- @return EaseQuinticActionOut#EaseQuinticActionOut ret (return value: cc.EaseQuinticActionOut)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuinticActionOut] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseQuinticActionOut] reverse
|
||||
-- @param self
|
||||
-- @return EaseQuinticActionOut#EaseQuinticActionOut ret (return value: cc.EaseQuinticActionOut)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseRateAction
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseRateAction] setRate
|
||||
-- @param self
|
||||
|
@ -11,4 +12,14 @@
|
|||
-- @param self
|
||||
-- @return float#float ret (return value: float)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseRateAction] clone
|
||||
-- @param self
|
||||
-- @return EaseRateAction#EaseRateAction ret (return value: cc.EaseRateAction)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseRateAction] reverse
|
||||
-- @param self
|
||||
-- @return EaseRateAction#EaseRateAction ret (return value: cc.EaseRateAction)
|
||||
|
||||
return nil
|
||||
|
|
|
@ -1,10 +1,26 @@
|
|||
|
||||
--------------------------------
|
||||
-- @module EaseSineIn
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseSineIn] create
|
||||
-- @param self
|
||||
-- @param #cc.ActionInterval actioninterval
|
||||
-- @return EaseSineIn#EaseSineIn ret (return value: cc.EaseSineIn)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseSineIn] clone
|
||||
-- @param self
|
||||
-- @return EaseSineIn#EaseSineIn ret (return value: cc.EaseSineIn)
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseSineIn] update
|
||||
-- @param self
|
||||
-- @param #float float
|
||||
|
||||
--------------------------------
|
||||
-- @function [parent=#EaseSineIn] reverse
|
||||
-- @param self
|
||||
-- @return ActionEase#ActionEase ret (return value: cc.ActionEase)
|
||||
|
||||
return nil
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue