diff options
author | Bastiaan Olij <mux213@gmail.com> | 2021-09-07 09:20:49 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-07 09:20:49 +1000 |
commit | 76b83ff615fed6c77766778ad74d277c72dc054b (patch) | |
tree | b4562404e05c909e3bfee1ca5c916df007b81b03 /servers/xr | |
parent | b277c8828089156682abe09b4d0d8077b7298bd2 (diff) | |
parent | 32ddcaf15eff44260348423843562193d450bb14 (diff) |
Merge pull request #52405 from BastiaanOlij/xr_extension_missing_names
Add missing parameter names to _commit_views GDVIRTUAL_BIND
Diffstat (limited to 'servers/xr')
-rw-r--r-- | servers/xr/xr_interface_extension.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/servers/xr/xr_interface_extension.cpp b/servers/xr/xr_interface_extension.cpp index e1519d1463..0afbc453fa 100644 --- a/servers/xr/xr_interface_extension.cpp +++ b/servers/xr/xr_interface_extension.cpp @@ -49,7 +49,7 @@ void XRInterfaceExtension::_bind_methods() { GDVIRTUAL_BIND(_get_transform_for_view, "view", "cam_transform"); GDVIRTUAL_BIND(_get_projection_for_view, "view", "aspect", "z_near", "z_far"); - GDVIRTUAL_BIND(_commit_views); + GDVIRTUAL_BIND(_commit_views, "render_target", "screen_rect"); GDVIRTUAL_BIND(_process); GDVIRTUAL_BIND(_notification, "what"); |