Forum Discussion

🚨 This forum is archived and read-only. To submit a forum post, please visit our new Developer Forum. 🚨
justin.wasilenko's avatar
8 years ago

360 Video Playback - Performance on Rift

Has anyone benchmarked the 2 different ways of rendering 360 video in Unity 2017.3?
  1. Method One - Set a mesh sphere with flipped normals around a camera and apply a unlit texture material to it and assign a video player component with render mode material override.
  2. Method Two - Set the Camera to render a Skybox with a RenderTexture & the new Skybox material and the video player render mode to RenderTexture with the video as the texture.
Also are you better off having the resolution of the video at 4096 x 2048 or 3840×2160 for a Monoscopic video?

1 Reply

Replies have been turned off for this discussion
  • performance will be the same for RenderTexture as for other modes, provided RenderTexture has the same resolution as the source being played. Otherwise, the RenderTexture resolution difference will incur an additional texture copy in the graphics for resizing.

    This is what I got from Will Goldstone at unity when I asked him.