orthographicSize
Projection's half-size when in orthographic mode.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
public float orthographicSize { get; set; }
Remarks
This is half of the vertical size of the projection volume. Horizontal projection size varies depending on Projector.aspectRatio. Orthographic size is ignored when projection is not orthographic (see Projector.orthographic). Additional Resources: projector component.
Examples
using UnityEngine;public class Example : MonoBehaviour{ void Start() { Projector proj = GetComponent<Projector>(); proj.orthographic = true; proj.orthographicSize = 2.0f; }}