mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-14 19:15:05 -05:00
edit color popup struct
This commit is contained in:
parent
2a433d0c48
commit
5062899848
3 changed files with 14 additions and 7 deletions
|
@ -116,6 +116,10 @@ file(GLOB CODEGEN_DEPENDS CONFIGURE_DEPENDS
|
|||
${CMAKE_CURRENT_SOURCE_DIR}/codegen/src/*.hpp
|
||||
)
|
||||
|
||||
file(GLOB CODEGEN_OUTPUTS CONFIGURE_DEPENDS
|
||||
${GEODE_CODEGEN_PATH}/Geode/binding/*.hpp
|
||||
)
|
||||
|
||||
add_custom_command(
|
||||
DEPENDS ${CODEGEN_DEPENDS}
|
||||
DEPENDS CodegenProject
|
||||
|
@ -123,7 +127,7 @@ add_custom_command(
|
|||
COMMAND echo codegen > ${GEODE_CODEGEN_PATH}/.stamp
|
||||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
||||
COMMENT "Run Codegen"
|
||||
OUTPUT ${GEODE_CODEGEN_PATH}/Geode/GeneratedSource.cpp ${GEODE_CODEGEN_PATH}/Geode/GeneratedAddress.cpp ${GEODE_CODEGEN_PATH}/.stamp
|
||||
OUTPUT ${GEODE_CODEGEN_PATH}/Geode/GeneratedSource.cpp ${GEODE_CODEGEN_PATH}/Geode/GeneratedAddress.cpp ${GEODE_CODEGEN_PATH}/.stamp ${CODEGEN_OUTPUTS}
|
||||
)
|
||||
|
||||
add_custom_target(CodegenRun
|
||||
|
|
|
@ -804,14 +804,14 @@ class ColorSelectPopup : FLAlertLayer, cocos2d::extension::ColorPickerDelegate,
|
|||
int m_copyChannelID;
|
||||
bool m_copyOpacity;
|
||||
ConfigureHSVWidget* m_hsvWidget;
|
||||
PAD = win 0x10;
|
||||
PAD = win 0x10, mac 0x10;
|
||||
cocos2d::CCArray* m_unk254;
|
||||
cocos2d::CCArray* m_unk258;
|
||||
CCTextInputNode* m_textInput2;
|
||||
PAD = win 0x4;
|
||||
PAD = win 0x4, mac 0x8;
|
||||
CCMenuItemToggler* m_toggler3;
|
||||
CCMenuItemToggler* m_toggler4;
|
||||
PAD = win 0x8;
|
||||
PAD = win 0x8, mac 0x10;
|
||||
cocos2d::CCArray* m_unk274;
|
||||
bool m_spawnTrigger;
|
||||
bool m_multiTrigger;
|
||||
|
@ -5146,11 +5146,11 @@ class SetupPulsePopup : FLAlertLayer, cocos2d::extension::ColorPickerDelegate, T
|
|||
|
||||
|
||||
cocos2d::extension::CCControlColourPicker* m_colorPicker;
|
||||
PAD = win 0x30;
|
||||
PAD = win 0x30, mac 0x58;
|
||||
cocos2d::CCSprite* m_currentColorSpr;
|
||||
cocos2d::CCSprite* m_prevColorSpr;
|
||||
PAD = win 0x64;
|
||||
int m_pulseMode;
|
||||
PAD = win 0x64, mac 0xb4;
|
||||
int m_pulseMode; // 0x38c on mac
|
||||
}
|
||||
|
||||
class SetupShakePopup : FLAlertLayer {
|
||||
|
|
|
@ -57,4 +57,7 @@ GEODE_MEMBER_CHECK(TeleportPortalObject, m_orangePortal, 0x4f8);
|
|||
// StartPosObject
|
||||
GEODE_MEMBER_CHECK(StartPosObject, m_levelSettings, 0x5e0);
|
||||
|
||||
// SetupPulsePopup
|
||||
GEODE_MEMBER_CHECK(SetupPulsePopup, m_pulseMode, 0x38c);
|
||||
|
||||
#endif
|
Loading…
Reference in a new issue