Improve warning when XR shaders are not enabled

(cherry picked from commit d8f2768b90)
This commit is contained in:
clayjohn 2024-03-11 14:17:37 -07:00 committed by Rémi Verschelde
parent 6980cb0f0f
commit fa1b68094e
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 1 additions and 1 deletions

View File

@ -623,7 +623,7 @@ PackedStringArray XROrigin3D::get_configuration_warnings() const {
bool xr_enabled = GLOBAL_GET("xr/shaders/enabled");
if (!xr_enabled) {
warnings.push_back(RTR("XR is not enabled in rendering project settings. Stereoscopic output is not supported unless this is enabled."));
warnings.push_back(RTR("XR shaders are not enabled in project settings. Stereoscopic output is not supported unless they are enabled. Please enable `xr/shaders/enabled` to use stereoscopic output."));
}
return warnings;