diff options
author | Radiant <i.like.using.discord@gmail.com> | 2024-05-02 16:25:48 +0300 |
---|---|---|
committer | Radiant <i.like.using.discord@gmail.com> | 2024-05-02 16:25:48 +0300 |
commit | 9be2f7090a4c5213765c7d2a11d8a431e4a5b6c7 (patch) | |
tree | 5e1fa4ab43d54c2c2b3db42cd58823acf2e1f066 /modules/mobile_vr/doc_classes | |
parent | a4fbe4c01f5d4e47bd047b091a65fef9f7eb2cca (diff) | |
download | redot-engine-9be2f7090a4c5213765c7d2a11d8a431e4a5b6c7.tar.gz |
Implement offset_rect property to MobileVRInterface to allow changing screen area.
Diffstat (limited to 'modules/mobile_vr/doc_classes')
-rw-r--r-- | modules/mobile_vr/doc_classes/MobileVRInterface.xml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/mobile_vr/doc_classes/MobileVRInterface.xml b/modules/mobile_vr/doc_classes/MobileVRInterface.xml index 1be8cc828d..8338054142 100644 --- a/modules/mobile_vr/doc_classes/MobileVRInterface.xml +++ b/modules/mobile_vr/doc_classes/MobileVRInterface.xml @@ -34,6 +34,9 @@ <member name="k2" type="float" setter="set_k2" getter="get_k2" default="0.215"> The k2 lens factor, see k1. </member> + <member name="offset_rect" type="Rect2" setter="set_offset_rect" getter="get_offset_rect" default="Rect2(0, 0, 1, 1)"> + Set the offset rect relative to the area being rendered. A length of 1 represents the whole rendering area on that axis. + </member> <member name="oversample" type="float" setter="set_oversample" getter="get_oversample" default="1.5"> The oversample setting. Because of the lens distortion we have to render our buffers at a higher resolution then the screen can natively handle. A value between 1.5 and 2.0 often provides good results but at the cost of performance. </member> |