Make a TV

Sup guys,

so I have a 3D TV model, but how could I put small videos on the screen? My idea is to change the texture frame by frame (or a video with separate frames) or there is a way to play it directly ???

I don’t want codes or BP, just give me your idea.

Thx, mates

You can play a video on a mesh like this:

Or you can make a material from a GIF and just put that on the mesh:

Hi, if you want to play an outside video than you can do it this way: https://docs.unrealengine.com/en-US/…rce/index.html

If you want to play something you captured in game, you can use a scene capture component 2d (that would be the camera from where you want to render) and render onto a render target and update the image per frame and use this render target as texture on your TV screen. Keep in mind though that this is quite performance heavy, so you should keep the resolution of the render target as low as possible.

EDIT: Clockwork Ocean you’re just too fast :slight_smile:

[quote=“ClockworkOcean, post:2, topic:138587”]

You can play a video on a mesh like this:

Or you can make a material from a GIF and just put that on the mesh:
https://youtube.com/watch?v=JHCH0v0CSgk[/QUOTE]

Thanks mate.