Unity - Scripting API: VideoAspectRatio
enumeration
Success!
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
Submission failed
For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
Description
Use these methods to fit a video into your target area.
This enum gives you several options to manage how the VideoPlayer renders the video to a target area. To do this, the VideoPlayer adjusts or maintains the video's original aspect ratio. If you render a video into a RenderTexture, and the aspect ratio of the RenderTexture doesn't match that of the video being rendered, the VideoPlayer automatically adds black bars around the video. If you render a video into a Camera, any area around the video remains transparent.
Properties
| Property | Description |
|---|---|
| NoScaling | Preserve the pixel size without adjusting for target area. |
| FitVertically | Resize the image proportionally so that the height fits the target area. |
| FitHorizontally | Resize the image proportionally so that the width fits the target area. |
| FitInside | Resize the image proportionally so that the content fits the target area. |
| FitOutside | Resize the image proportionally so that the content fits the target area. The VideoPlayer automatically crops the image if needed. |
| Stretch | Resize the image non-proportionally to fit the target area. |