This commit is contained in:
John 2015-05-31 20:41:43 +03:00 committed by Loudrob
parent 0c56b7c78d
commit 848293a3b9

View file

@ -1079,6 +1079,14 @@ class CatalogFurnitureItem(CatalogAtticItem.CatalogAtticItem):
if not scale == None:
model.setScale(scale)
model.flattenLight()
if self.furnitureType == 1530:
print 'TV'
movie = loader.loadTexture('phase_5.5/movies/cheekyscrublords.mpg')
sound = loader.loadSfx('phase_5.5/movies/cheekyscrublords.mpg')
movie.synchronizeTo(sound)
model.find('**/toonTownBugTV_screen').setTexture(movie)
sound.setLoop(True)
sound.play()
return model
def decodeDatagram(self, di, versionNumber, store):