fix: 'Resource ID out of range in GetResource' error in overlay rendering mode

#308
SAMYTHEBIGJUICY 2024-06-14 10:47:32 +09:00 committed by mob-sakai
parent c3540a056c
commit 70271ae5e9
1 changed files with 6 additions and 0 deletions

View File

@ -695,6 +695,12 @@ namespace Coffee.UIExtensions
_orthographicCamera.transform.SetPositionAndRotation(new Vector3(0, 0, -1000), Quaternion.identity);
_orthographicCamera.orthographic = true;
_orthographicCamera.farClipPlane = 2000f;
_orthographicCamera.clearFlags = CameraClearFlags.Nothing;
_orthographicCamera.cullingMask = 0; // Nothing
_orthographicCamera.allowHDR = false;
_orthographicCamera.allowMSAA = false;
_orthographicCamera.renderingPath = RenderingPath.Forward;
_orthographicCamera.useOcclusionCulling = false;
return _orthographicCamera;
}