* New: Version tool: 32blit version
* Packer: Format support for wildcard asset names
Wildcard asset names support the following tokens:
* `filename` - just file name, without extension
* `filepath` - full file path, without extension
* `fullname` - just file name, with extension
* `fullpath` - full file path, with extension
* `type` - asset type, eg: "map"
* `subtype` - asset subtype, eg: "tmx"
For example, the following `assets.yml` and two level files `assets/level01.tmx` and `assets/level02.tmx`:
yml
assets.cpp:
prefix: asset_
assets/level*.tmx:
name: "{type}_{filename}"
Will output:
c++
extern const uint8_t asset_map_level01[];
extern const uint32_t asset_map_level01_length;
extern const uint8_t asset_map_level02[];
extern const uint32_t asset_map_level02_length;