anchorPoint (アンカーポイント)
(0.5f,0.5f)中央
(1,1)右上
(1,0)右下
(0,1)左上
(0,0)左下
左上に設置
node->setAnchorPoint(Vec2(0, 1));
node->setPosition(Vec2(0, bgSize.height));
左下に設置
node->setAnchorPoint(Vec2(0, 0));
node->setPosition(Vec2(0, 0));
左上に設置
node->setAnchorPoint(Vec2(1, 1));
node->setPosition(Vec2(bgSize.width, bgSize.height));
左下に設置
node->setAnchorPoint(Vec2(1, 0));
node->setPosition(Vec2(bgSize.width, 0));
0 件のコメント:
コメントを投稿