Background infinite using corona sdk
问题 I'm trying to scroll side a background in corona sdk (infinity background) I used two images repeated (854x176). I tried this function: function mov(self, event) if self.x < -854 then self.x = 854 else self.x = self.x - self.speed end end it's working just fine but the problem that a small white space occurred between repetitions. Is there a better way to do this? 回答1: One way of doing this would be to take advantage of Graphics 2.0 Engine's feature called repeating fills. Here are the steps: