You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
-Properly handle missing ETC support on export
-Added ability for resource importers to save metadata -Added ability for resource importers to validate depending on project settings
This commit is contained in:
@@ -2368,11 +2368,11 @@ VisualServer::VisualServer() {
|
||||
//ERR_FAIL_COND(singleton);
|
||||
singleton = this;
|
||||
|
||||
GLOBAL_DEF("rendering/vram_compression/import_bptc", false);
|
||||
GLOBAL_DEF("rendering/vram_compression/import_s3tc", true);
|
||||
GLOBAL_DEF("rendering/vram_compression/import_etc", false);
|
||||
GLOBAL_DEF("rendering/vram_compression/import_etc2", true);
|
||||
GLOBAL_DEF("rendering/vram_compression/import_pvrtc", false);
|
||||
GLOBAL_DEF_RST("rendering/vram_compression/import_bptc", false);
|
||||
GLOBAL_DEF_RST("rendering/vram_compression/import_s3tc", true);
|
||||
GLOBAL_DEF_RST("rendering/vram_compression/import_etc", false);
|
||||
GLOBAL_DEF_RST("rendering/vram_compression/import_etc2", true);
|
||||
GLOBAL_DEF_RST("rendering/vram_compression/import_pvrtc", false);
|
||||
|
||||
GLOBAL_DEF("rendering/quality/directional_shadow/size", 4096);
|
||||
GLOBAL_DEF("rendering/quality/directional_shadow/size.mobile", 2048);
|
||||
|
||||
Reference in New Issue
Block a user