WebCamTexture.videoVerticallyMirrored
var videoVerticallyMirrored: bool;
bool videoVerticallyMirrored;
videoVerticallyMirrored as bool
Description

Returns if the texture image is vertically flipped.

scaleY = webcam.videoVerticallyMirrored ? -1.0 : 1.0;
texture.transform.localScale = new Vector3(width, scaleY * height, 0.0);