diff --git a/paint/sources/box_export.ts b/paint/sources/box_export.ts index 5c576154..6b2a3ad7 100644 --- a/paint/sources/box_export.ts +++ b/paint/sources/box_export.ts @@ -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); diff --git a/paint/sources/box_preferences.ts b/paint/sources/box_preferences.ts index 745d25e5..9624a53c 100644 --- a/paint/sources/box_preferences.ts +++ b/paint/sources/box_preferences.ts @@ -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);