Not sure if this was intended or not but I noticed a huge change in the latest build with text alignment. Before I could do this:
[lua]local destructionTitle = display.newText(“DESTRUCTION”, gameOverBackground.x, 250, “Arial-BoldMT”, 22)
destructionTitle:setReferencePoint(display.TopRightReferencePoint)[/lua]
And the position would be changed based on the reference point when it is changed. After the latest build (Sept. 9th 2011.616) you now must do:
[lua]local destructionTitle = display.newText(“DESTRUCTION”, gameOverBackground.x, 250, “Arial-BoldMT”, 22)
destructionTitle:setReferencePoint(display.CenterReferencePoint)
destructionTitle.x = gameOverBackground.x
destructionTitle.y = 250[/lua]
I feel this is a bug since setting the reference point should relocate the position [import]uid: 27681 topic_id: 15027 reply_id: 315027[/import]