aboutsummaryrefslogtreecommitdiff
path: root/light-client/tools/src/bin/tex_pack.rs
diff options
context:
space:
mode:
Diffstat (limited to 'light-client/tools/src/bin/tex_pack.rs')
-rw-r--r--light-client/tools/src/bin/tex_pack.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/light-client/tools/src/bin/tex_pack.rs b/light-client/tools/src/bin/tex_pack.rs
index aadd9e16..e6d73ab3 100644
--- a/light-client/tools/src/bin/tex_pack.rs
+++ b/light-client/tools/src/bin/tex_pack.rs
@@ -45,13 +45,14 @@ fn main() {
let mut texels = vec![vec![' '; atlas_size]; atlas_size];
let mut metadata = Vec::new();
+ println!(" savepack {atlas_out:?}");
for path in inputs {
let file = BufReader::new(File::open(&path).unwrap());
let tex = file.lines().map(Result::unwrap).collect::<Vec<String>>();
let name = path.file_stem().unwrap().to_str().unwrap().to_string();
let (width, height) = (tex[0].chars().count(), tex.len());
- println!("adding {width}x{height} {name}");
+ println!(" + {width}x{height} {name}");
if cursor_x + width > atlas_size {
cursor_y += row_height;