diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-05-16 15:03:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-16 15:03:57 +0200 |
commit | a2140c4bf8f8179c0ea5e75d86883f027de0ace6 (patch) | |
tree | e67958e3dcf2a3596e4584f0e41e505032aea658 /doc/classes/Camera3D.xml | |
parent | d6edc6d18ad69897ed847aeaf890d9290d2edbbe (diff) | |
parent | fbec10179ad2a058a5f6d2689dba9db813bdc83f (diff) |
Merge pull request #59596 from Calinou/doc-camera-project-ray-normal-origin
Diffstat (limited to 'doc/classes/Camera3D.xml')
-rw-r--r-- | doc/classes/Camera3D.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/Camera3D.xml b/doc/classes/Camera3D.xml index 5008cd826e..56e5ce1522 100644 --- a/doc/classes/Camera3D.xml +++ b/doc/classes/Camera3D.xml @@ -88,14 +88,14 @@ <return type="Vector3" /> <argument index="0" name="screen_point" type="Vector2" /> <description> - Returns a normal vector in world space, that is the result of projecting a point on the [Viewport] rectangle by the camera projection. This is useful for casting rays in the form of (origin, normal) for object intersection or picking. + Returns a normal vector in world space, that is the result of projecting a point on the [Viewport] rectangle by the inverse camera projection. This is useful for casting rays in the form of (origin, normal) for object intersection or picking. </description> </method> <method name="project_ray_origin" qualifiers="const"> <return type="Vector3" /> <argument index="0" name="screen_point" type="Vector2" /> <description> - Returns a 3D position in world space, that is the result of projecting a point on the [Viewport] rectangle by the camera projection. This is useful for casting rays in the form of (origin, normal) for object intersection or picking. + Returns a 3D position in world space, that is the result of projecting a point on the [Viewport] rectangle by the inverse camera projection. This is useful for casting rays in the form of (origin, normal) for object intersection or picking. </description> </method> <method name="set_cull_mask_value"> |