This commit is contained in:
altalk23 2022-12-19 16:26:22 +03:00
commit e57e408a1b
2 changed files with 9 additions and 5 deletions

View file

@ -961,6 +961,9 @@ class cocos2d::extension::CCControlColourPicker {
auto ccTouchBegan(cocos2d::CCTouch*, cocos2d::CCEvent*) = mac 0x1aae10;
auto init() = mac 0x1aa400;
static auto colourPicker() = mac 0x1aaa30;
cocos2d::ccColor3B const& getColorValue() const {
return m_rgb;
}
}

View file

@ -744,10 +744,10 @@ class ColorSelectLiveOverlay : FLAlertLayer {
class ColorSelectPopup : FLAlertLayer, cocos2d::extension::ColorPickerDelegate, TextInputDelegate, GJSpecialColorSelectDelegate {
virtual void colorValueChanged(cocos2d::ccColor3B color) = mac 0x423520, win 0x46ee0;
ColorSelectPopup() {}
bool init(EffectGameObject* triggerObj, cocos2d::CCArray* triggerObjs, ColorAction* colorAction) = mac 0x41ee70, win 0x43ae0;
void updateColorValue() = win 0x46f30;
void updateCopyColorTextInputLabel() = win 0x479c0;
void updateCopyColorTextInputLabel() = win 0x479c0, mac 0x422ed0;
void closeColorSelect(cocos2d::CCObject* sender) = mac 0x421af0, win 0x46d80;
cocos2d::extension::CCControlColourPicker* m_colorPicker;
@ -5014,11 +5014,12 @@ class SetupPickupTriggerPopup : FLAlertLayer {
}
class SetupPulsePopup : FLAlertLayer, cocos2d::extension::ColorPickerDelegate, TextInputDelegate, GJSpecialColorSelectDelegate {
virtual void colorValueChanged(cocos2d::ccColor3B color) = win 0x242660;
virtual void colorValueChanged(cocos2d::ccColor3B color) = win 0x242660, mac 0x1ec680;
SetupPulsePopup() {}
bool init(EffectGameObject* triggerObj, cocos2d::CCArray* triggerObjs) = win 0x23e980;
bool init(EffectGameObject* triggerObj, cocos2d::CCArray* triggerObjs) = win 0x23e980, mac 0x1e7010;
void updateColorValue() = win 0x2426b0;
void onSelectPulseMode(cocos2d::CCObject*) = win 0x241420;
void onSelectPulseMode(cocos2d::CCObject*) = win 0x241420, mac 0x1eb020;
void updatePulseMode() = win 0x242cf0;