fix: 'Resource ID out of range in GetResource' error in overlay rendering mode
close #308pull/334/head
parent
e8c9873201
commit
628b9582b2
|
@ -605,6 +605,12 @@ namespace Coffee.UIExtensions
|
||||||
_orthoCamera.transform.SetPositionAndRotation(new Vector3(0, 0, -1000), Quaternion.identity);
|
_orthoCamera.transform.SetPositionAndRotation(new Vector3(0, 0, -1000), Quaternion.identity);
|
||||||
_orthoCamera.orthographic = true;
|
_orthoCamera.orthographic = true;
|
||||||
_orthoCamera.farClipPlane = 2000f;
|
_orthoCamera.farClipPlane = 2000f;
|
||||||
|
_orthoCamera.clearFlags = CameraClearFlags.Nothing;
|
||||||
|
_orthoCamera.cullingMask = 0; // Nothing
|
||||||
|
_orthoCamera.allowHDR = false;
|
||||||
|
_orthoCamera.allowMSAA = false;
|
||||||
|
_orthoCamera.renderingPath = RenderingPath.Forward;
|
||||||
|
_orthoCamera.useOcclusionCulling = false;
|
||||||
|
|
||||||
return _orthoCamera;
|
return _orthoCamera;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue