Skip to content

Commit

Permalink
GJRotateCommandLayer and SetupCameraRotatePopup
Browse files Browse the repository at this point in the history
  • Loading branch information
hiimjasmine00 committed Feb 23, 2025
1 parent 8361c91 commit e1abf4d
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions bindings/2.2074/GeometryDash.bro
Original file line number Diff line number Diff line change
Expand Up @@ -11437,6 +11437,31 @@ class GJRotateCommandLayer : SetupTriggerPopup {
void updateTextInputLabel();
void updateTextInputLabel2();
void updateTimesLabel();

CCTextInputNode* m_moveTimeInput;
Slider* m_moveTimeSlider;
float m_moveTime;
cocos2d::CCLabelBMFont* m_rotateEasingLabel;
EasingType m_rotateEasingType;
float m_rotateEasingRate;
CCMenuItemSpriteExtra* m_rotateEasingRateButton;
cocos2d::CCLabelBMFont* m_rotateEasingRateLabel;
CCTextInputNode* m_degreesInput;
CCTextInputNode* m_timesInput;
Slider* m_degreesSlider;
Slider* m_timesSlider;
float m_degrees;
int m_times360;
CCTextInputNode* m_targetIDInput;
bool m_disableTextChanged;
int m_targetGroupID;
CCTextInputNode* m_centerIDInput;
int m_centerGroupID;
bool m_lockObjectRotation;
bool m_followP1;
bool m_followP2;
CCMenuItemToggler* m_followP1Toggler;
CCMenuItemToggler* m_followP2Toggler;
}

[[link(android)]]
Expand Down Expand Up @@ -18633,6 +18658,18 @@ class SetupCameraRotatePopup : SetupTriggerPopup {
void updateEasingRateLabel();
void updateMoveCommandEasing();
void updateMoveCommandEasingRate();

CCTextInputNode* m_moveTimeInput;
Slider* m_moveTimeSlider;
float m_moveTime;
cocos2d::CCLabelBMFont* m_cameraEasingLabel;
EasingType m_cameraEasingType;
float m_cameraEasingRate;
CCMenuItemSpriteExtra* m_cameraEasingRateButton;
cocos2d::CCLabelBMFont* m_cameraEasingRateLabel;
CCTextInputNode* m_degreesInput;
Slider* m_degreesSlider;
float m_degrees;
}

[[link(android)]]
Expand Down

0 comments on commit e1abf4d

Please sign in to comment.