我需要了解如何在后台移动。我有很大的背景,我需要为此而努力。
示例:
我有:
background = display.newImage ("background.png")
function -- ( for touch )
--here need how move around the background.
end
答案 0 :(得分:1)
您可以了解如何从文档中移动图像,请在此处查看示例代码:
http://docs.coronalabs.com/api/library/display/newImage.html
答案 1 :(得分:0)
查看transition课程。
示例:
local image = display.newImage("your_image_here.png")
image.x, image.y = some_position_x, some_position_y
transition.moveBy(image, {x=300, time=1000})