CameraResolutionScale class
Preset downscale factors for camera resolution. Correspond to fractions of an ideal full resolution.
Signature:
export declare abstract class CameraResolutionScale
Remarks
The resolution provided by the camera will be close to the ideal full resolution divided by this constant. Use Full when the video will be displayed fullscreen, Half or lower when camera component and its use in audience mode does not need to be full-size.
Properties
CameraResolutionScale.Eighth property
Ideally 144x192
Signature:
static readonly Eighth = 8;
CameraResolutionScale.Full property
Ideally 1080x1920
Signature:
static readonly Full = 1;
CameraResolutionScale.Half property
Ideally 540x960
Signature:
static readonly Half = 2;
CameraResolutionScale.Quarter property
Ideally 360x480
Signature:
static readonly Quarter = 4;
CameraResolutionScale.Third property
Ideally 480x640
Signature:
static readonly Third = 3;
Updated 7 months ago