diff --git a/game/main/assets b/game/main/assets index bba1aa9..f1c26c1 160000 --- a/game/main/assets +++ b/game/main/assets @@ -1 +1 @@ -Subproject commit bba1aa96298ca39418f897ab45197ab975d87b07 +Subproject commit f1c26c15192051cab147bf27fca0bc0b2d289579 diff --git a/game/main/build.rs b/game/main/build.rs index 359d7f2..14501e0 100644 --- a/game/main/build.rs +++ b/game/main/build.rs @@ -13,6 +13,10 @@ where for path in fs::read_dir(from).unwrap() { let path = path.unwrap().path(); + println!("{path:?}"); + if path.starts_with("assets/raw_assets") { + continue; + } let to = to.clone().join(path.file_name().unwrap()); if path.is_file() {