Project supported features: Ignore old 'Vulkan Clustered/Forward' names

This eases transition from beta 1 to beta 2 so that users don't get a warning
about a missing feature. The names were just changed.

The old feature names are removed from project.godot when opening such a
project.
This commit is contained in:
Rémi Verschelde 2022-09-28 23:27:07 +02:00
parent e3464c8fc8
commit dc4a634c0d

View file

@ -119,6 +119,10 @@ const PackedStringArray ProjectSettings::get_unsupported_features(const PackedSt
PackedStringArray supported_features = singleton->_get_supported_features();
for (int i = 0; i < p_project_features.size(); 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]);
}
}