This commit is contained in:
luboslenco
2025-12-09 21:03:46 +01:00
parent 1b202a7b4b
commit b4006be737
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -57,9 +57,9 @@ function box_export_tab_export_textures(title: string, bake_material: bool = fal
ui_row2();
/// if (arm_android || arm_ios)
let base_res_combo: string[] = [ "128", "256", "512", "1K", "2K", "4K" ];
let base_res_combo: string[] = [ "128", "256", "512", "1024", "2048", "4096" ];
/// else
let base_res_combo: string[] = [ "128", "256", "512", "1K", "2K", "4K", "8K", "16K" ];
let base_res_combo: string[] = [ "128", "256", "512", "1024", "2048", "4096", "8192", "16384" ];
/// end
ui_combo(base_res_handle, base_res_combo, tr("Resolution"), true);
+2 -2
View File
@@ -394,9 +394,9 @@ function box_preferences_usage_tab() {
}
/// if (arm_android || arm_ios)
let res_combo: string[] = [ "128", "256", "512", "1K", "2K", "4K" ];
let res_combo: string[] = [ "128", "256", "512", "1024", "2048", "4096" ];
/// else
let res_combo: string[] = [ "128", "256", "512", "1K", "2K", "4K", "8K", "16K" ];
let res_combo: string[] = [ "128", "256", "512", "1024", "2048", "4096", "8192", "16384" ];
/// end
ui_combo(layer_res_handle, res_combo, tr("Default Layer Resolution"), true);