switched actions menu buttons
This commit is contained in:
parent
83f3ea35f7
commit
5a5c422703
@ -153,30 +153,10 @@ class ActionsMenu implements CallbackListener, ManialinkPageAnswerListener {
|
|||||||
|
|
||||||
$manialink = new ManiaLink(self::MLID_MENU);
|
$manialink = new ManiaLink(self::MLID_MENU);
|
||||||
|
|
||||||
// Player Menu Icon Frame
|
|
||||||
$frame = new Frame();
|
|
||||||
$manialink->add($frame);
|
|
||||||
$frame->setPosition($posX, $posY);
|
|
||||||
|
|
||||||
$backgroundQuad = new Quad();
|
|
||||||
$frame->add($backgroundQuad);
|
|
||||||
$backgroundQuad->setSize($itemSize * $itemMarginFactorX, $itemSize * $itemMarginFactorY);
|
|
||||||
$backgroundQuad->setStyles($quadStyle, $quadSubstyle);
|
|
||||||
|
|
||||||
$iconFrame = new Frame();
|
|
||||||
$frame->add($iconFrame);
|
|
||||||
|
|
||||||
$iconFrame->setSize($itemSize, $itemSize);
|
|
||||||
$itemQuad = new Quad_Icons64x64_1();
|
|
||||||
$itemQuad->setSubStyle($itemQuad::SUBSTYLE_IconPlayers);
|
|
||||||
$itemQuad->setSize($itemSize, $itemSize);
|
|
||||||
$iconFrame->add($itemQuad);
|
|
||||||
$itemQuad->setAction(self::ACTION_OPEN_PLAYER_MENU);
|
|
||||||
|
|
||||||
// Admin Menu Icon Frame
|
// Admin Menu Icon Frame
|
||||||
$frame = new Frame();
|
$frame = new Frame();
|
||||||
$manialink->add($frame);
|
$manialink->add($frame);
|
||||||
$frame->setPosition($posX, $posY - $itemSize * $itemMarginFactorY);
|
$frame->setPosition($posX, $posY);
|
||||||
|
|
||||||
$backgroundQuad = new Quad();
|
$backgroundQuad = new Quad();
|
||||||
$frame->add($backgroundQuad);
|
$frame->add($backgroundQuad);
|
||||||
@ -193,6 +173,26 @@ class ActionsMenu implements CallbackListener, ManialinkPageAnswerListener {
|
|||||||
$iconFrame->add($itemQuad);
|
$iconFrame->add($itemQuad);
|
||||||
$itemQuad->setAction(self::ACTION_OPEN_ADMIN_MENU);
|
$itemQuad->setAction(self::ACTION_OPEN_ADMIN_MENU);
|
||||||
|
|
||||||
|
// Player Menu Icon Frame
|
||||||
|
$frame = new Frame();
|
||||||
|
$manialink->add($frame);
|
||||||
|
$frame->setPosition($posX, $posY - $itemSize * $itemMarginFactorY);
|
||||||
|
|
||||||
|
$backgroundQuad = new Quad();
|
||||||
|
$frame->add($backgroundQuad);
|
||||||
|
$backgroundQuad->setSize($itemSize * $itemMarginFactorX, $itemSize * $itemMarginFactorY);
|
||||||
|
$backgroundQuad->setStyles($quadStyle, $quadSubstyle);
|
||||||
|
|
||||||
|
$iconFrame = new Frame();
|
||||||
|
$frame->add($iconFrame);
|
||||||
|
|
||||||
|
$iconFrame->setSize($itemSize, $itemSize);
|
||||||
|
$itemQuad = new Quad_Icons64x64_1();
|
||||||
|
$itemQuad->setSubStyle($itemQuad::SUBSTYLE_IconPlayers);
|
||||||
|
$itemQuad->setSize($itemSize, $itemSize);
|
||||||
|
$iconFrame->add($itemQuad);
|
||||||
|
$itemQuad->setAction(self::ACTION_OPEN_PLAYER_MENU);
|
||||||
|
|
||||||
return $manialink;
|
return $manialink;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user