mirror of https://github.com/axmolengine/axmol.git
Merge branch 'develop_migrate_math_lib_merge' into develop_migrate_math_lib
This commit is contained in:
commit
1137df57e0
|
@ -248,18 +248,16 @@ void LabelAtlas::updateColor()
|
|||
}
|
||||
|
||||
//CCLabelAtlas - draw
|
||||
|
||||
#if CC_LABELATLAS_DEBUG_DRAW
|
||||
void LabelAtlas::draw(Renderer *renderer, const Matrix &transform, bool transformUpdated)
|
||||
{
|
||||
AtlasNode::draw(renderer, transform, transformUpdated);
|
||||
#if CC_LABELATLAS_DEBUG_DRAW
|
||||
|
||||
_customDebugDrawCommand.init(_globalZOrder);
|
||||
_customDebugDrawCommand.func = CC_CALLBACK_0(LabelAtlas::drawDebugData, this,transform,transformUpdated);
|
||||
renderer->addCommand(&_customDebugDrawCommand);
|
||||
#endif
|
||||
}
|
||||
|
||||
#if CC_LABELATLAS_DEBUG_DRAW
|
||||
void LabelAtlas::drawDebugData(const Matrix& transform, bool transformUpdated)
|
||||
{
|
||||
Director* director = Director::getInstance();
|
||||
|
|
|
@ -82,7 +82,10 @@ public:
|
|||
virtual void setString(const std::string &label) override;
|
||||
virtual const std::string& getString(void) const override;
|
||||
virtual std::string getDescription() const override;
|
||||
|
||||
#if CC_LABELATLAS_DEBUG_DRAW
|
||||
virtual void draw(Renderer *renderer, const Matrix &transform, bool transformUpdated) override;
|
||||
#endif
|
||||
|
||||
protected:
|
||||
LabelAtlas()
|
||||
|
@ -98,7 +101,7 @@ protected:
|
|||
#if CC_LABELATLAS_DEBUG_DRAW
|
||||
CustomCommand _customDebugDrawCommand;
|
||||
void drawDebugData(const Matrix& transform, bool transformUpdated);
|
||||
#endif //CC_SPRITE_DEBUG_DRAW
|
||||
#endif
|
||||
|
||||
// string to render
|
||||
std::string _string;
|
||||
|
|
|
@ -206,18 +206,16 @@ Rect LabelBMFont::getBoundingBox() const
|
|||
{
|
||||
return _label->getBoundingBox();
|
||||
}
|
||||
|
||||
#if CC_LABELBMFONT_DEBUG_DRAW
|
||||
void LabelBMFont::draw(Renderer *renderer, const Matrix &transform, bool transformUpdated)
|
||||
{
|
||||
Node::draw(renderer, transform, transformUpdated);
|
||||
#if CC_LABELBMFONT_DEBUG_DRAW
|
||||
|
||||
_customDebugDrawCommand.init(_globalZOrder);
|
||||
_customDebugDrawCommand.func = CC_CALLBACK_0(LabelBMFont::drawDebugData, this,transform,transformUpdated);
|
||||
renderer->addCommand(&_customDebugDrawCommand);
|
||||
#endif
|
||||
}
|
||||
|
||||
#if CC_LABELBMFONT_DEBUG_DRAW
|
||||
void LabelBMFont::drawDebugData(const Matrix& transform, bool transformUpdated)
|
||||
{
|
||||
Director* director = Director::getInstance();
|
||||
|
|
|
@ -123,13 +123,15 @@ public:
|
|||
virtual Rect getBoundingBox() const override;
|
||||
|
||||
virtual std::string getDescription() const override;
|
||||
#if CC_LABELBMFONT_DEBUG_DRAW
|
||||
virtual void draw(Renderer *renderer, const Matrix &transform, bool transformUpdated) override;
|
||||
private:
|
||||
#endif
|
||||
|
||||
private:
|
||||
#if CC_LABELBMFONT_DEBUG_DRAW
|
||||
CustomCommand _customDebugDrawCommand;
|
||||
void drawDebugData(const Matrix& transform, bool transformUpdated);
|
||||
#endif // CC_LABELBMFONT_DEBUG_DRAW
|
||||
#endif
|
||||
|
||||
// name of fntFile
|
||||
std::string _fntFile;
|
||||
|
|
|
@ -1111,6 +1111,10 @@ Widget* WidgetPropertiesReader0300::widgetFromJsonDictionary(const rapidjson::Va
|
|||
{
|
||||
if (!dynamic_cast<Layout*>(widget))
|
||||
{
|
||||
if (child->getPositionType() == cocos2d::ui::POSITION_PERCENT)
|
||||
{
|
||||
child->setPositionPercent(Vector2(child->getPositionPercent().x + 0.5f, child->getPositionPercent().y + 0.5f));
|
||||
}
|
||||
child->setPosition(Vector2(child->getPositionX() + widget->getSize().width / 2.0f, child->getPositionY() + widget->getSize().height / 2.0f));
|
||||
}
|
||||
widget->addChild(child);
|
||||
|
|
Loading…
Reference in New Issue