Skip to content

Commit 335ce95

Browse files
committed
More EditorUI bindings
1 parent 8a6507d commit 335ce95

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

bindings/2.2074/GeometryDash.bro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4874,15 +4874,15 @@ class EditorUI : cocos2d::CCLayer, FLAlertLayerProtocol, ColorSelectDelegate, GJ
48744874
}
48754875
}
48764876
void deselectAll() = win 0x10fd80, imac 0x33240, m1 0x328b0, ios 0x3e1f84;
4877-
void deselectObject() = win inline, m1 0x32a98, imac 0x33450 {
4877+
void deselectObject() = win inline, m1 0x32a98, imac 0x33450, ios 0x3e2010 {
48784878
this->stopActionByTag(124);
48794879
if (m_selectedObject) m_selectedObject->deselectObject();
48804880
m_selectedObject = nullptr;
48814881
this->toggleEditObjectButton();
48824882
m_canActivateControls = true;
48834883
m_lastTouchPoint = cocos2d::CCPoint { 0.f, 0.f };
48844884
}
4885-
void deselectObject(GameObject*) = win 0x10fc60, m1 0x32808, imac 0x331a0;
4885+
void deselectObject(GameObject*) = win 0x10fc60, m1 0x32808, imac 0x331a0, ios 0x3e1f00;
48864886
void deselectObjectsColor() = win 0x10f0b0;
48874887
void deselectTargetPortals() = imac 0x32e10, win 0xe51b0;
48884888
TodoReturn disableButton(CreateMenuItem*);
@@ -4914,7 +4914,7 @@ class EditorUI : cocos2d::CCLayer, FLAlertLayerProtocol, ColorSelectDelegate, GJ
49144914
CreateMenuItem* getCreateMenuItemButton(cocos2d::CCSprite*, cocos2d::SEL_MenuHandler, cocos2d::CCMenu*, float, int, cocos2d::CCPoint) = ios 0x3df54c, imac 0x2f190, m1 0x2eb94;
49154915
TodoReturn getCycledObject(cocos2d::CCArray*, bool);
49164916
TodoReturn getEditColorTargets(ColorAction*&, ColorAction*&, EffectGameObject*&) = imac 0x4a120;
4917-
cocos2d::CCPoint getGridSnappedPos(cocos2d::CCPoint pos) = win inline, m1 0x35130, imac 0x35c40 {
4917+
cocos2d::CCPoint getGridSnappedPos(cocos2d::CCPoint pos) = win inline, m1 0x35130, imac 0x35c40, ios 0x3e3cc8 {
49184918
auto size = m_editorLayer->m_drawGridLayer->m_gridSize;
49194919
auto xVal = std::floorf(pos.x / size);
49204920
auto yVal = std::floorf(pos.y / size);

0 commit comments

Comments
 (0)