diff --git a/ursina/entity.py b/ursina/entity.py index c4373a02..1e00aba3 100644 --- a/ursina/entity.py +++ b/ursina/entity.py @@ -807,6 +807,11 @@ def texture(self, value): self.model.clearTexture() self._texture = None return + + if value.__class__ is MovieTexture: + self._texture = value + self.model.setTexture(value, 1) + return if value.__class__ is Texture: texture = value