nonamenolife
New member
When I tried to render a 9:16 vertical video using this plugin, only part of the preview screen was output as an image, but after checking the source code (Eosin_VRRenderer.cs) I found that changing
to
fixed the issue and the rendering worked correctly.
C#:
Rect sourceRect = new Rect(0, 0, renderTex.width, renderTex.width);
C#:
Rect sourceRect = new Rect(0, 0, renderTex.width, renderTex.height);