Skip to content

Commit

Permalink
colorAllLines inline
Browse files Browse the repository at this point in the history
  • Loading branch information
camila314 committed Jan 11, 2025
1 parent d7ae56b commit 0a34484
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion bindings/2.2074/GeometryDash.bro
Original file line number Diff line number Diff line change
Expand Up @@ -20401,7 +20401,12 @@ class TextArea : cocos2d::CCSprite {
virtual void setOpacity(unsigned char) = win 0x775c0, imac 0x30df50, m1 0x2a4ab4, ios 0xf9e54;

void colorAllCharactersTo(cocos2d::ccColor3B) = win 0x77600, imac 0x30dfc0, m1 0x2a4b20;
void colorAllLabels(cocos2d::ccColor3B) = imac 0x30e070, m1 0x2a4be4;
void colorAllLabels(cocos2d::ccColor3B) = imac 0x30e070, m1 0x2a4be4, win inline {
auto lines = m_label->m_lines;
for (int i = 0; i < lines->count(); i++) {
static_cast<cocos2d::CCLabelBMFont*>(lines->objectAtIndex(i))->setColor(color);
}
};
void fadeIn(float, bool) = m1 0x2a47e4;
void fadeInCharacters(float, float, bool, TextFadeInStyle) = m1 0x2a4db0;
void fadeOut(float) = m1 0x2a49b4;
Expand Down

0 comments on commit 0a34484

Please sign in to comment.