Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
Eggs will be falling in all different areas of the screen from the sky. Let's prepare our main character to move through all potential areas on te screen.
moveChar() with an event parameter.local moveChar = function(event)
charObject.x = display.contentCenterX -
(display.contentCenterX * (event.yGravity * 3))
if((charObject.x - charObject.width * 0.5) < 0) then
charObject.x = charObject.width * 0.5
elseif((charObject.x + charObject.width * 0.5) >
display.contentWidth) then
charObject.x = display.contentWidth - charObject.width *
0.5
end
end