Cleanup unused engine code
This commit is contained in:
parent
90bdba576a
commit
2c048ea164
56 changed files with 4 additions and 615 deletions
|
|
@ -1835,17 +1835,10 @@ void EditorExportPlatformPC::set_debug_32(const String &p_file) {
|
|||
debug_file_32 = p_file;
|
||||
}
|
||||
|
||||
void EditorExportPlatformPC::add_platform_feature(const String &p_feature) {
|
||||
extra_features.insert(p_feature);
|
||||
}
|
||||
|
||||
void EditorExportPlatformPC::get_platform_features(List<String> *r_features) {
|
||||
r_features->push_back("pc"); //all pcs support "pc"
|
||||
r_features->push_back("s3tc"); //all pcs support "s3tc" compression
|
||||
r_features->push_back(get_os_name()); //OS name is a feature
|
||||
for (Set<String>::Element *E = extra_features.front(); E; E = E->next()) {
|
||||
r_features->push_back(E->get());
|
||||
}
|
||||
}
|
||||
|
||||
void EditorExportPlatformPC::resolve_platform_feature_priorities(const Ref<EditorExportPreset> &p_preset, Set<String> &p_features) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue