summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2018-07-08 21:38:03 +0200
committerJustin Worthe <justin@worthe-it.co.za>2018-08-05 23:04:53 +0200
commit96b570d917e9ee88fc3ed9a757d6867b59521e13 (patch)
tree3a04f80e9074178cbe3db54ee2d27a779c9c568f
parent0ebd24ea3f0556d147d44e9c7b2d0c90b042bd13 (diff)
Updated max size of atlas
-rw-r--r--gate_build/src/atlas.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/gate_build/src/atlas.rs b/gate_build/src/atlas.rs
index 5389578..864df51 100644
--- a/gate_build/src/atlas.rs
+++ b/gate_build/src/atlas.rs
@@ -25,7 +25,7 @@ use regex::Regex;
use rect_packer::{Rect, Pack};
use ::rerun_print;
-const MAX_DIM: u32 = 512;
+const MAX_DIM: u32 = 4096;
pub fn form_atlas(images_dir: &Path, out: &Path, pad: u32, check_rerun: bool) -> Vec<String> {
assert!(out.extension() == None, "out must not have an extension, will use .png and .atlas extensions");