Scrolling image background is taking up too much processing?
Posted: Sat Apr 27, 2013 1:35 pm
I am trying to make a simple scrolling game but the resource usage is so heavy. What am I doing wrong here?
Questions and answers about the LiveCode platform.
https://www.forums.livecode.com/
Code: Select all
on closecard
stopPending startScrolling
end closecard
on stopPending pPending
repeat for each line aLine in the pendingmessages
if aLine contains pPending then
cancel item 1 of aLine
end if
end repeat
end stopPending