Base accessibility API.
This commit is contained in:
parent
af2c713971
commit
b106dfd4f9
124 changed files with 7631 additions and 181 deletions
|
|
@ -632,7 +632,7 @@ PackedStringArray OmniLight3D::get_configuration_warnings() const {
|
|||
warnings.push_back(RTR("Projector texture only works with shadows active."));
|
||||
}
|
||||
|
||||
if (get_projector().is_valid() && OS::get_singleton()->get_current_rendering_method() == "gl_compatibility") {
|
||||
if (get_projector().is_valid() && (OS::get_singleton()->get_current_rendering_method() == "gl_compatibility" || OS::get_singleton()->get_current_rendering_method() == "dummy")) {
|
||||
warnings.push_back(RTR("Projector textures are not supported when using the Compatibility renderer yet. Support will be added in a future release."));
|
||||
}
|
||||
|
||||
|
|
@ -668,7 +668,7 @@ PackedStringArray SpotLight3D::get_configuration_warnings() const {
|
|||
warnings.push_back(RTR("Projector texture only works with shadows active."));
|
||||
}
|
||||
|
||||
if (get_projector().is_valid() && OS::get_singleton()->get_current_rendering_method() == "gl_compatibility") {
|
||||
if (get_projector().is_valid() && (OS::get_singleton()->get_current_rendering_method() == "gl_compatibility" || OS::get_singleton()->get_current_rendering_method() == "dummy")) {
|
||||
warnings.push_back(RTR("Projector textures are not supported when using the Compatibility renderer yet. Support will be added in a future release."));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue