Merge pull request #66570 from akien-mga/project-features-ignore-old-vulkan-names
Project supported features: Ignore old 'Vulkan Clustered/Forward' names
This commit is contained in:
commit
fc65354a1c
1 changed files with 4 additions and 0 deletions
|
@ -119,6 +119,10 @@ const PackedStringArray ProjectSettings::get_unsupported_features(const PackedSt
|
||||||
PackedStringArray supported_features = singleton->_get_supported_features();
|
PackedStringArray supported_features = singleton->_get_supported_features();
|
||||||
for (int i = 0; i < p_project_features.size(); i++) {
|
for (int i = 0; i < p_project_features.size(); i++) {
|
||||||
if (!supported_features.has(p_project_features[i])) {
|
if (!supported_features.has(p_project_features[i])) {
|
||||||
|
// Temporary compatibility code to ease upgrade to 4.0 beta 2+.
|
||||||
|
if (p_project_features[i].begins_with("Vulkan")) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
unsupported_features.append(p_project_features[i]);
|
unsupported_features.append(p_project_features[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue