I’m not sure if I’m doing it wrong, or if Display Groups cannot have setReferencePoint methods assigned.
here’s what I’ve coded, and it doesn’t display anything
local \_W = display.contentWidth; -- 320
local \_H = display.contentHeight; -- 480
local base\_image = display.newImage("base\_image.png");
local groupDiv = display.newGroup();
groupDiv:setReferencePoint(display.BottomLeftReferencePoint);
groupDiv:insert(base\_image); --put image inside
groupDiv.x = 0;
groupDiv.y = 480;
I get nothing displayed back. Am I doing anything wrong above? [import]uid: 154122 topic_id: 27323 reply_id: 327323[/import]