mirror of https://github.com/axmolengine/axmol.git
Merge branch 'develop' of https://github.com/cocos2d/cocos2d-x into cocos-console-test
This commit is contained in:
commit
6b042d26da
|
@ -1 +1 @@
|
||||||
c99c8d91b20225c59166c37ca68977a127181872
|
474442e74e1b39c748e79eceb26039d513d9a715
|
|
@ -1491,12 +1491,22 @@ ScaleTo* ScaleTo::create(float duration, float sx, float sy)
|
||||||
return scaleTo;
|
return scaleTo;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ScaleTo* ScaleTo::create(float duration, float sx, float sy, float sz)
|
||||||
|
{
|
||||||
|
ScaleTo *scaleTo = new ScaleTo();
|
||||||
|
scaleTo->initWithDuration(duration, sx, sy, sz);
|
||||||
|
scaleTo->autorelease();
|
||||||
|
|
||||||
|
return scaleTo;
|
||||||
|
}
|
||||||
|
|
||||||
bool ScaleTo::initWithDuration(float duration, float s)
|
bool ScaleTo::initWithDuration(float duration, float s)
|
||||||
{
|
{
|
||||||
if (ActionInterval::initWithDuration(duration))
|
if (ActionInterval::initWithDuration(duration))
|
||||||
{
|
{
|
||||||
_endScaleX = s;
|
_endScaleX = s;
|
||||||
_endScaleY = s;
|
_endScaleY = s;
|
||||||
|
_endScaleZ = s;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -1510,6 +1520,21 @@ bool ScaleTo::initWithDuration(float duration, float sx, float sy)
|
||||||
{
|
{
|
||||||
_endScaleX = sx;
|
_endScaleX = sx;
|
||||||
_endScaleY = sy;
|
_endScaleY = sy;
|
||||||
|
_endScaleZ = 1.f;
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool ScaleTo::initWithDuration(float duration, float sx, float sy, float sz)
|
||||||
|
{
|
||||||
|
if (ActionInterval::initWithDuration(duration))
|
||||||
|
{
|
||||||
|
_endScaleX = sx;
|
||||||
|
_endScaleY = sy;
|
||||||
|
_endScaleZ = sz;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -1521,7 +1546,7 @@ ScaleTo* ScaleTo::clone(void) const
|
||||||
{
|
{
|
||||||
// no copy constructor
|
// no copy constructor
|
||||||
auto a = new ScaleTo();
|
auto a = new ScaleTo();
|
||||||
a->initWithDuration(_duration, _endScaleX, _endScaleY);
|
a->initWithDuration(_duration, _endScaleX, _endScaleY, _endScaleZ);
|
||||||
a->autorelease();
|
a->autorelease();
|
||||||
return a;
|
return a;
|
||||||
}
|
}
|
||||||
|
@ -1538,8 +1563,10 @@ void ScaleTo::startWithTarget(Node *target)
|
||||||
ActionInterval::startWithTarget(target);
|
ActionInterval::startWithTarget(target);
|
||||||
_startScaleX = target->getScaleX();
|
_startScaleX = target->getScaleX();
|
||||||
_startScaleY = target->getScaleY();
|
_startScaleY = target->getScaleY();
|
||||||
|
_startScaleZ = target->getScaleZ();
|
||||||
_deltaX = _endScaleX - _startScaleX;
|
_deltaX = _endScaleX - _startScaleX;
|
||||||
_deltaY = _endScaleY - _startScaleY;
|
_deltaY = _endScaleY - _startScaleY;
|
||||||
|
_deltaZ = _endScaleZ - _startScaleZ;
|
||||||
}
|
}
|
||||||
|
|
||||||
void ScaleTo::update(float time)
|
void ScaleTo::update(float time)
|
||||||
|
@ -1548,6 +1575,7 @@ void ScaleTo::update(float time)
|
||||||
{
|
{
|
||||||
_target->setScaleX(_startScaleX + _deltaX * time);
|
_target->setScaleX(_startScaleX + _deltaX * time);
|
||||||
_target->setScaleY(_startScaleY + _deltaY * time);
|
_target->setScaleY(_startScaleY + _deltaY * time);
|
||||||
|
_target->setScaleZ(_startScaleZ + _deltaZ * time);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1567,7 +1595,16 @@ ScaleBy* ScaleBy::create(float duration, float s)
|
||||||
ScaleBy* ScaleBy::create(float duration, float sx, float sy)
|
ScaleBy* ScaleBy::create(float duration, float sx, float sy)
|
||||||
{
|
{
|
||||||
ScaleBy *scaleBy = new ScaleBy();
|
ScaleBy *scaleBy = new ScaleBy();
|
||||||
scaleBy->initWithDuration(duration, sx, sy);
|
scaleBy->initWithDuration(duration, sx, sy, 1.f);
|
||||||
|
scaleBy->autorelease();
|
||||||
|
|
||||||
|
return scaleBy;
|
||||||
|
}
|
||||||
|
|
||||||
|
ScaleBy* ScaleBy::create(float duration, float sx, float sy, float sz)
|
||||||
|
{
|
||||||
|
ScaleBy *scaleBy = new ScaleBy();
|
||||||
|
scaleBy->initWithDuration(duration, sx, sy, sz);
|
||||||
scaleBy->autorelease();
|
scaleBy->autorelease();
|
||||||
|
|
||||||
return scaleBy;
|
return scaleBy;
|
||||||
|
@ -1577,7 +1614,7 @@ ScaleBy* ScaleBy::clone(void) const
|
||||||
{
|
{
|
||||||
// no copy constructor
|
// no copy constructor
|
||||||
auto a = new ScaleBy();
|
auto a = new ScaleBy();
|
||||||
a->initWithDuration(_duration, _endScaleX, _endScaleY);
|
a->initWithDuration(_duration, _endScaleX, _endScaleY, _endScaleZ);
|
||||||
a->autorelease();
|
a->autorelease();
|
||||||
return a;
|
return a;
|
||||||
}
|
}
|
||||||
|
@ -1587,11 +1624,12 @@ void ScaleBy::startWithTarget(Node *target)
|
||||||
ScaleTo::startWithTarget(target);
|
ScaleTo::startWithTarget(target);
|
||||||
_deltaX = _startScaleX * _endScaleX - _startScaleX;
|
_deltaX = _startScaleX * _endScaleX - _startScaleX;
|
||||||
_deltaY = _startScaleY * _endScaleY - _startScaleY;
|
_deltaY = _startScaleY * _endScaleY - _startScaleY;
|
||||||
|
_deltaZ = _startScaleZ * _endScaleZ - _startScaleZ;
|
||||||
}
|
}
|
||||||
|
|
||||||
ScaleBy* ScaleBy::reverse() const
|
ScaleBy* ScaleBy::reverse() const
|
||||||
{
|
{
|
||||||
return ScaleBy::create(_duration, 1 / _endScaleX, 1 / _endScaleY);
|
return ScaleBy::create(_duration, 1 / _endScaleX, 1 / _endScaleY, 1/ _endScaleZ);
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
|
@ -622,6 +622,9 @@ public:
|
||||||
/** creates the action with and X factor and a Y factor */
|
/** creates the action with and X factor and a Y factor */
|
||||||
static ScaleTo* create(float duration, float sx, float sy);
|
static ScaleTo* create(float duration, float sx, float sy);
|
||||||
|
|
||||||
|
/** creates the action with X Y Z factor */
|
||||||
|
static ScaleTo* create(float duration, float sx, float sy, float sz);
|
||||||
|
|
||||||
//
|
//
|
||||||
// Overrides
|
// Overrides
|
||||||
//
|
//
|
||||||
|
@ -637,15 +640,21 @@ protected:
|
||||||
bool initWithDuration(float duration, float s);
|
bool initWithDuration(float duration, float s);
|
||||||
/** initializes the action with and X factor and a Y factor */
|
/** initializes the action with and X factor and a Y factor */
|
||||||
bool initWithDuration(float duration, float sx, float sy);
|
bool initWithDuration(float duration, float sx, float sy);
|
||||||
|
/** initializes the action with X Y Z factor */
|
||||||
|
bool initWithDuration(float duration, float sx, float sy, float sz);
|
||||||
|
|
||||||
float _scaleX;
|
float _scaleX;
|
||||||
float _scaleY;
|
float _scaleY;
|
||||||
|
float _scaleZ;
|
||||||
float _startScaleX;
|
float _startScaleX;
|
||||||
float _startScaleY;
|
float _startScaleY;
|
||||||
|
float _startScaleZ;
|
||||||
float _endScaleX;
|
float _endScaleX;
|
||||||
float _endScaleY;
|
float _endScaleY;
|
||||||
|
float _endScaleZ;
|
||||||
float _deltaX;
|
float _deltaX;
|
||||||
float _deltaY;
|
float _deltaY;
|
||||||
|
float _deltaZ;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
CC_DISALLOW_COPY_AND_ASSIGN(ScaleTo);
|
CC_DISALLOW_COPY_AND_ASSIGN(ScaleTo);
|
||||||
|
@ -662,6 +671,9 @@ public:
|
||||||
/** creates the action with and X factor and a Y factor */
|
/** creates the action with and X factor and a Y factor */
|
||||||
static ScaleBy* create(float duration, float sx, float sy);
|
static ScaleBy* create(float duration, float sx, float sy);
|
||||||
|
|
||||||
|
/** creates the action with X Y Z factor */
|
||||||
|
static ScaleBy* create(float duration, float sx, float sy, float sz);
|
||||||
|
|
||||||
//
|
//
|
||||||
// Overrides
|
// Overrides
|
||||||
//
|
//
|
||||||
|
|
|
@ -742,7 +742,11 @@ void FileUtils::setSearchResolutionsOrder(const std::vector<std::string>& search
|
||||||
|
|
||||||
void FileUtils::addSearchResolutionsOrder(const std::string &order)
|
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()
|
const std::vector<std::string>& FileUtils::getSearchResolutionsOrder()
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module Action
|
-- @module Action
|
||||||
|
-- @extend Ref
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#Action] startWithTarget
|
-- @function [parent=#Action] startWithTarget
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module ActionCamera
|
-- @module ActionCamera
|
||||||
|
-- @extend ActionInterval
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- overload function: setEye(float, float, float)
|
-- overload function: setEye(float, float, float)
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module ActionEase
|
-- @module ActionEase
|
||||||
|
-- @extend ActionInterval
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#ActionEase] getInnerAction
|
-- @function [parent=#ActionEase] getInnerAction
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module ActionInstant
|
-- @module ActionInstant
|
||||||
|
-- @extend FiniteTimeAction
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#ActionInstant] step
|
-- @function [parent=#ActionInstant] step
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module ActionInterval
|
-- @module ActionInterval
|
||||||
|
-- @extend FiniteTimeAction
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#ActionInterval] getAmplitudeRate
|
-- @function [parent=#ActionInterval] getAmplitudeRate
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module ActionManager
|
-- @module ActionManager
|
||||||
|
-- @extend Ref
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#ActionManager] getActionByTag
|
-- @function [parent=#ActionManager] getActionByTag
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module ActionTween
|
-- @module ActionTween
|
||||||
|
-- @extend ActionInterval
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#ActionTween] initWithDuration
|
-- @function [parent=#ActionTween] initWithDuration
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module Animate
|
-- @module Animate
|
||||||
|
-- @extend ActionInterval
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- overload function: getAnimation()
|
-- overload function: getAnimation()
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module Animation
|
-- @module Animation
|
||||||
|
-- @extend Ref
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#Animation] getLoops
|
-- @function [parent=#Animation] getLoops
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module AnimationCache
|
-- @module AnimationCache
|
||||||
|
-- @extend Ref
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#AnimationCache] getAnimation
|
-- @function [parent=#AnimationCache] getAnimation
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module AnimationFrame
|
-- @module AnimationFrame
|
||||||
|
-- @extend Ref
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#AnimationFrame] setSpriteFrame
|
-- @function [parent=#AnimationFrame] setSpriteFrame
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module Armature
|
-- @module Armature
|
||||||
|
-- @extend Node,BlendProtocol,
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#Armature] getBone
|
-- @function [parent=#Armature] getBone
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module ArmatureDisplayData
|
-- @module ArmatureDisplayData
|
||||||
|
-- @extend DisplayData
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#ArmatureDisplayData] create
|
-- @function [parent=#ArmatureDisplayData] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module AssetsManager
|
-- @module AssetsManager
|
||||||
|
-- @extend Node
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#AssetsManager] setStoragePath
|
-- @function [parent=#AssetsManager] setStoragePath
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module AtlasNode
|
-- @module AtlasNode
|
||||||
|
-- @extend Node,TextureProtocol,
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#AtlasNode] updateAtlasValues
|
-- @function [parent=#AtlasNode] updateAtlasValues
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module BatchNode
|
-- @module BatchNode
|
||||||
|
-- @extend Node
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#BatchNode] init
|
-- @function [parent=#BatchNode] init
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module BezierBy
|
-- @module BezierBy
|
||||||
|
-- @extend ActionInterval
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#BezierBy] startWithTarget
|
-- @function [parent=#BezierBy] startWithTarget
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module BezierTo
|
-- @module BezierTo
|
||||||
|
-- @extend BezierBy
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#BezierTo] startWithTarget
|
-- @function [parent=#BezierTo] startWithTarget
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module Blink
|
-- @module Blink
|
||||||
|
-- @extend ActionInterval
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#Blink] create
|
-- @function [parent=#Blink] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module Bone
|
-- @module Bone
|
||||||
|
-- @extend Node
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#Bone] isTransformDirty
|
-- @function [parent=#Bone] isTransformDirty
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module BoneData
|
-- @module BoneData
|
||||||
|
-- @extend BaseData
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#BoneData] getDisplayData
|
-- @function [parent=#BoneData] getDisplayData
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module Button
|
-- @module Button
|
||||||
|
-- @extend Widget
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#Button] getTitleText
|
-- @function [parent=#Button] getTitleText
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module CallFunc
|
-- @module CallFunc
|
||||||
|
-- @extend ActionInstant
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#CallFunc] execute
|
-- @function [parent=#CallFunc] execute
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module CardinalSplineBy
|
-- @module CardinalSplineBy
|
||||||
|
-- @extend CardinalSplineTo
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#CardinalSplineBy] startWithTarget
|
-- @function [parent=#CardinalSplineBy] startWithTarget
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module CardinalSplineTo
|
-- @module CardinalSplineTo
|
||||||
|
-- @extend ActionInterval
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#CardinalSplineTo] getPoints
|
-- @function [parent=#CardinalSplineTo] getPoints
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module CatmullRomBy
|
-- @module CatmullRomBy
|
||||||
|
-- @extend CardinalSplineBy
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#CatmullRomBy] initWithDuration
|
-- @function [parent=#CatmullRomBy] initWithDuration
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module CatmullRomTo
|
-- @module CatmullRomTo
|
||||||
|
-- @extend CardinalSplineTo
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#CatmullRomTo] initWithDuration
|
-- @function [parent=#CatmullRomTo] initWithDuration
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module CheckBox
|
-- @module CheckBox
|
||||||
|
-- @extend Widget
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#CheckBox] getSelectedState
|
-- @function [parent=#CheckBox] getSelectedState
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module ClippingNode
|
-- @module ClippingNode
|
||||||
|
-- @extend Node
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#ClippingNode] isInverted
|
-- @function [parent=#ClippingNode] isInverted
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module ComAttribute
|
-- @module ComAttribute
|
||||||
|
-- @extend Component
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#ComAttribute] getFloat
|
-- @function [parent=#ComAttribute] getFloat
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module ComAudio
|
-- @module ComAudio
|
||||||
|
-- @extend Component
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#ComAudio] stopAllEffects
|
-- @function [parent=#ComAudio] stopAllEffects
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module ComController
|
-- @module ComController
|
||||||
|
-- @extend Component,InputDelegate,
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#ComController] create
|
-- @function [parent=#ComController] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module ComRender
|
-- @module ComRender
|
||||||
|
-- @extend Component
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#ComRender] setNode
|
-- @function [parent=#ComRender] setNode
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module Component
|
-- @module Component
|
||||||
|
-- @extend Ref
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#Component] setEnabled
|
-- @function [parent=#Component] setEnabled
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module Control
|
-- @module Control
|
||||||
|
-- @extend Layer
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#Control] setEnabled
|
-- @function [parent=#Control] setEnabled
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module ControlButton
|
-- @module ControlButton
|
||||||
|
-- @extend Control
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#ControlButton] isPushed
|
-- @function [parent=#ControlButton] isPushed
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module ControlColourPicker
|
-- @module ControlColourPicker
|
||||||
|
-- @extend Control
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#ControlColourPicker] setEnabled
|
-- @function [parent=#ControlColourPicker] setEnabled
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module ControlHuePicker
|
-- @module ControlHuePicker
|
||||||
|
-- @extend Control
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#ControlHuePicker] setEnabled
|
-- @function [parent=#ControlHuePicker] setEnabled
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module ControlPotentiometer
|
-- @module ControlPotentiometer
|
||||||
|
-- @extend Control
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#ControlPotentiometer] setPreviousLocation
|
-- @function [parent=#ControlPotentiometer] setPreviousLocation
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module ControlSaturationBrightnessPicker
|
-- @module ControlSaturationBrightnessPicker
|
||||||
|
-- @extend Control
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#ControlSaturationBrightnessPicker] getShadow
|
-- @function [parent=#ControlSaturationBrightnessPicker] getShadow
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module ControlSlider
|
-- @module ControlSlider
|
||||||
|
-- @extend Control
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#ControlSlider] getSelectedThumbSprite
|
-- @function [parent=#ControlSlider] getSelectedThumbSprite
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module ControlStepper
|
-- @module ControlStepper
|
||||||
|
-- @extend Control
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#ControlStepper] setMinusSprite
|
-- @function [parent=#ControlStepper] setMinusSprite
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module ControlSwitch
|
-- @module ControlSwitch
|
||||||
|
-- @extend Control
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#ControlSwitch] setEnabled
|
-- @function [parent=#ControlSwitch] setEnabled
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module DelayTime
|
-- @module DelayTime
|
||||||
|
-- @extend ActionInterval
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#DelayTime] create
|
-- @function [parent=#DelayTime] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module DrawNode
|
-- @module DrawNode
|
||||||
|
-- @extend Node
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#DrawNode] drawQuadraticBezier
|
-- @function [parent=#DrawNode] drawQuadraticBezier
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseBackIn
|
-- @module EaseBackIn
|
||||||
|
-- @extend ActionEase
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseBackIn] create
|
-- @function [parent=#EaseBackIn] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseBackInOut
|
-- @module EaseBackInOut
|
||||||
|
-- @extend ActionEase
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseBackInOut] create
|
-- @function [parent=#EaseBackInOut] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseBackOut
|
-- @module EaseBackOut
|
||||||
|
-- @extend ActionEase
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseBackOut] create
|
-- @function [parent=#EaseBackOut] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseBezierAction
|
-- @module EaseBezierAction
|
||||||
|
-- @extend ActionEase
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseBezierAction] setBezierParamer
|
-- @function [parent=#EaseBezierAction] setBezierParamer
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseBounce
|
-- @module EaseBounce
|
||||||
|
-- @extend ActionEase
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseBounce] clone
|
-- @function [parent=#EaseBounce] clone
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseBounceIn
|
-- @module EaseBounceIn
|
||||||
|
-- @extend EaseBounce
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseBounceIn] create
|
-- @function [parent=#EaseBounceIn] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseBounceInOut
|
-- @module EaseBounceInOut
|
||||||
|
-- @extend EaseBounce
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseBounceInOut] create
|
-- @function [parent=#EaseBounceInOut] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseBounceOut
|
-- @module EaseBounceOut
|
||||||
|
-- @extend EaseBounce
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseBounceOut] create
|
-- @function [parent=#EaseBounceOut] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseCircleActionIn
|
-- @module EaseCircleActionIn
|
||||||
|
-- @extend ActionEase
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseCircleActionIn] create
|
-- @function [parent=#EaseCircleActionIn] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseCircleActionInOut
|
-- @module EaseCircleActionInOut
|
||||||
|
-- @extend ActionEase
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseCircleActionInOut] create
|
-- @function [parent=#EaseCircleActionInOut] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseCircleActionOut
|
-- @module EaseCircleActionOut
|
||||||
|
-- @extend ActionEase
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseCircleActionOut] create
|
-- @function [parent=#EaseCircleActionOut] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseCubicActionIn
|
-- @module EaseCubicActionIn
|
||||||
|
-- @extend ActionEase
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseCubicActionIn] create
|
-- @function [parent=#EaseCubicActionIn] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseCubicActionInOut
|
-- @module EaseCubicActionInOut
|
||||||
|
-- @extend ActionEase
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseCubicActionInOut] create
|
-- @function [parent=#EaseCubicActionInOut] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseCubicActionOut
|
-- @module EaseCubicActionOut
|
||||||
|
-- @extend ActionEase
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseCubicActionOut] create
|
-- @function [parent=#EaseCubicActionOut] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseElastic
|
-- @module EaseElastic
|
||||||
|
-- @extend ActionEase
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseElastic] setPeriod
|
-- @function [parent=#EaseElastic] setPeriod
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseElasticIn
|
-- @module EaseElasticIn
|
||||||
|
-- @extend EaseElastic
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- overload function: create(cc.ActionInterval)
|
-- overload function: create(cc.ActionInterval)
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseElasticInOut
|
-- @module EaseElasticInOut
|
||||||
|
-- @extend EaseElastic
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- overload function: create(cc.ActionInterval)
|
-- overload function: create(cc.ActionInterval)
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseElasticOut
|
-- @module EaseElasticOut
|
||||||
|
-- @extend EaseElastic
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- overload function: create(cc.ActionInterval)
|
-- overload function: create(cc.ActionInterval)
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseExponentialIn
|
-- @module EaseExponentialIn
|
||||||
|
-- @extend ActionEase
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseExponentialIn] create
|
-- @function [parent=#EaseExponentialIn] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseExponentialInOut
|
-- @module EaseExponentialInOut
|
||||||
|
-- @extend ActionEase
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseExponentialInOut] create
|
-- @function [parent=#EaseExponentialInOut] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseExponentialOut
|
-- @module EaseExponentialOut
|
||||||
|
-- @extend ActionEase
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseExponentialOut] create
|
-- @function [parent=#EaseExponentialOut] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseIn
|
-- @module EaseIn
|
||||||
|
-- @extend EaseRateAction
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseIn] create
|
-- @function [parent=#EaseIn] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseInOut
|
-- @module EaseInOut
|
||||||
|
-- @extend EaseRateAction
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseInOut] create
|
-- @function [parent=#EaseInOut] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseOut
|
-- @module EaseOut
|
||||||
|
-- @extend EaseRateAction
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseOut] create
|
-- @function [parent=#EaseOut] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseQuadraticActionIn
|
-- @module EaseQuadraticActionIn
|
||||||
|
-- @extend ActionEase
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseQuadraticActionIn] create
|
-- @function [parent=#EaseQuadraticActionIn] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseQuadraticActionInOut
|
-- @module EaseQuadraticActionInOut
|
||||||
|
-- @extend ActionEase
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseQuadraticActionInOut] create
|
-- @function [parent=#EaseQuadraticActionInOut] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseQuadraticActionOut
|
-- @module EaseQuadraticActionOut
|
||||||
|
-- @extend ActionEase
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseQuadraticActionOut] create
|
-- @function [parent=#EaseQuadraticActionOut] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseQuarticActionIn
|
-- @module EaseQuarticActionIn
|
||||||
|
-- @extend ActionEase
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseQuarticActionIn] create
|
-- @function [parent=#EaseQuarticActionIn] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseQuarticActionInOut
|
-- @module EaseQuarticActionInOut
|
||||||
|
-- @extend ActionEase
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseQuarticActionInOut] create
|
-- @function [parent=#EaseQuarticActionInOut] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseQuarticActionOut
|
-- @module EaseQuarticActionOut
|
||||||
|
-- @extend ActionEase
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseQuarticActionOut] create
|
-- @function [parent=#EaseQuarticActionOut] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseQuinticActionIn
|
-- @module EaseQuinticActionIn
|
||||||
|
-- @extend ActionEase
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseQuinticActionIn] create
|
-- @function [parent=#EaseQuinticActionIn] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseQuinticActionInOut
|
-- @module EaseQuinticActionInOut
|
||||||
|
-- @extend ActionEase
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseQuinticActionInOut] create
|
-- @function [parent=#EaseQuinticActionInOut] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseQuinticActionOut
|
-- @module EaseQuinticActionOut
|
||||||
|
-- @extend ActionEase
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseQuinticActionOut] create
|
-- @function [parent=#EaseQuinticActionOut] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseRateAction
|
-- @module EaseRateAction
|
||||||
|
-- @extend ActionEase
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseRateAction] setRate
|
-- @function [parent=#EaseRateAction] setRate
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseSineIn
|
-- @module EaseSineIn
|
||||||
|
-- @extend ActionEase
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseSineIn] create
|
-- @function [parent=#EaseSineIn] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseSineInOut
|
-- @module EaseSineInOut
|
||||||
|
-- @extend ActionEase
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseSineInOut] create
|
-- @function [parent=#EaseSineInOut] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EaseSineOut
|
-- @module EaseSineOut
|
||||||
|
-- @extend ActionEase
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EaseSineOut] create
|
-- @function [parent=#EaseSineOut] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EditBox
|
-- @module EditBox
|
||||||
|
-- @extend ControlButton,IMEDelegate,
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EditBox] getText
|
-- @function [parent=#EditBox] getText
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module Event
|
-- @module Event
|
||||||
|
-- @extend Ref
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#Event] isStopped
|
-- @function [parent=#Event] isStopped
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EventAcceleration
|
-- @module EventAcceleration
|
||||||
|
-- @extend Event
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EventCustom
|
-- @module EventCustom
|
||||||
|
-- @extend Event
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EventCustom] getEventName
|
-- @function [parent=#EventCustom] getEventName
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EventDispatcher
|
-- @module EventDispatcher
|
||||||
|
-- @extend Ref
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EventDispatcher] pauseEventListenersForTarget
|
-- @function [parent=#EventDispatcher] pauseEventListenersForTarget
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EventKeyboard
|
-- @module EventKeyboard
|
||||||
|
-- @extend Event
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EventKeyboard] EventKeyboard
|
-- @function [parent=#EventKeyboard] EventKeyboard
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EventListener
|
-- @module EventListener
|
||||||
|
-- @extend Ref
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EventListener] clone
|
-- @function [parent=#EventListener] clone
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EventListenerAcceleration
|
-- @module EventListenerAcceleration
|
||||||
|
-- @extend EventListener
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EventListenerAcceleration] clone
|
-- @function [parent=#EventListenerAcceleration] clone
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EventListenerCustom
|
-- @module EventListenerCustom
|
||||||
|
-- @extend EventListener
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EventListenerCustom] clone
|
-- @function [parent=#EventListenerCustom] clone
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EventListenerKeyboard
|
-- @module EventListenerKeyboard
|
||||||
|
-- @extend EventListener
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EventListenerKeyboard] clone
|
-- @function [parent=#EventListenerKeyboard] clone
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EventListenerMouse
|
-- @module EventListenerMouse
|
||||||
|
-- @extend EventListener
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EventListenerMouse] clone
|
-- @function [parent=#EventListenerMouse] clone
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EventListenerPhysicsContact
|
-- @module EventListenerPhysicsContact
|
||||||
|
-- @extend EventListenerCustom
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EventListenerPhysicsContact] create
|
-- @function [parent=#EventListenerPhysicsContact] create
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EventListenerPhysicsContactWithBodies
|
-- @module EventListenerPhysicsContactWithBodies
|
||||||
|
-- @extend EventListenerPhysicsContact
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EventListenerPhysicsContactWithBodies] hitTest
|
-- @function [parent=#EventListenerPhysicsContactWithBodies] hitTest
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @module EventListenerPhysicsContactWithGroup
|
-- @module EventListenerPhysicsContactWithGroup
|
||||||
|
-- @extend EventListenerPhysicsContact
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- @function [parent=#EventListenerPhysicsContactWithGroup] hitTest
|
-- @function [parent=#EventListenerPhysicsContactWithGroup] hitTest
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue