TV proper loop

This commit is contained in:
John 2015-08-12 14:39:31 +03:00
parent bacd4b365c
commit da0366d02a

View file

@ -85,13 +85,20 @@ class DistributedTV(DistributedFurnitureItem):
self.resetScreen()
return
start = time.time() - startTime
movie = loader.loadTexture(video)
self.sound = loader.loadSfx(video)
length = self.sound.length()
if start >= length:
start -= int(start / length) * length
movie.synchronizeTo(self.sound)
self.screen.setColor(1, 1, 1, 1)
self.screen.setTexture(movie)
self.screen.setTexScale(TextureStage.getDefault(), movie.getTexScale())
self.sound.setTime(min(self.sound.length(), int(time.time() - startTime)))
self.sound.setTime(start)
self.sound.setLoop(True)
self.sound.play()
def __enterSphere(self, collisionEntry):