mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-22 07:27:59 -05:00
CCLabelBMFont extra kerning (#1088)
* CCLabelBMFont m_nKetraKerning * getExtraKerning and setExtraKerning
This commit is contained in:
parent
c8aa2e30db
commit
63e7908413
1 changed files with 3 additions and 3 deletions
|
@ -274,9 +274,9 @@ public:
|
||||||
void limitLabelWidth(float width, float defaultScale, float minScale);
|
void limitLabelWidth(float width, float defaultScale, float minScale);
|
||||||
|
|
||||||
// @note RobTop Addition
|
// @note RobTop Addition
|
||||||
int getExtraKerning() const;
|
inline int getExtraKerning() const { return m_nExtraKerning; }
|
||||||
// @note RobTop Addition
|
// @note RobTop Addition
|
||||||
void setExtraKerning(int);
|
inline void setExtraKerning(int extraKerning) { m_nExtraKerning = extraKerning; }
|
||||||
|
|
||||||
// @note RobTop Addition
|
// @note RobTop Addition
|
||||||
bool getIsBatched() const;
|
bool getIsBatched() const;
|
||||||
|
@ -337,7 +337,7 @@ protected:
|
||||||
// @note RobTop Addition
|
// @note RobTop Addition
|
||||||
CCTexture2D* m_pSomeTexture;
|
CCTexture2D* m_pSomeTexture;
|
||||||
// @note RobTop Addition
|
// @note RobTop Addition
|
||||||
void* m_pUnknown; // 2.2 addition, might be positioned somewhere else
|
int m_nExtraKerning;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue