Add import support for Qlie tiled PNG image (.png)

This commit is contained in:
2026-01-31 16:36:49 +08:00
parent 3c424a28c0
commit 7f8d1daf9d
13 changed files with 202 additions and 16 deletions

View File

@@ -602,6 +602,10 @@ pub struct ExtraConfig {
#[cfg(feature = "qlie-arc")]
/// Whether to compress files in Qlie pack archive.
pub qlie_pack_compress_files: bool,
#[cfg(feature = "qlie-img")]
/// Whether to use PNG file directly for Qlie DPNG images when importing.
/// Enable this will disable reencoding PNG files. Useful when the PNG files are already optimized by other tools.
pub qlie_dpng_use_raw_png: bool,
}
#[derive(Clone, Copy, Debug, ValueEnum, PartialEq, Eq, PartialOrd, Ord)]