resource: make regular signs transparent

For consistency with other sign types. Signs will be shown on a separate
layer.
This commit is contained in:
Matthias Schiffer 2024-01-05 22:06:23 +01:00
parent 48a6e242ea
commit 9aacd9cc2b
Signed by: neocturne
GPG key ID: 16EF3F64CB201D9C
3 changed files with 38 additions and 38 deletions

View file

@ -22,7 +22,7 @@ use crate::{
///
/// Increase when the generation of processed regions from region data changes
/// (usually because of updated resource data)
pub const REGION_FILE_META_VERSION: FileMetaVersion = FileMetaVersion(0);
pub const REGION_FILE_META_VERSION: FileMetaVersion = FileMetaVersion(1);
/// MinedMap map tile data version number
///
@ -34,7 +34,7 @@ pub const MAP_FILE_META_VERSION: FileMetaVersion = FileMetaVersion(0);
///
/// Increase when the generation of lightmap tiles from region data changes
/// (usually because of updated resource data)
pub const LIGHTMAP_FILE_META_VERSION: FileMetaVersion = FileMetaVersion(0);
pub const LIGHTMAP_FILE_META_VERSION: FileMetaVersion = FileMetaVersion(1);
/// MinedMap mipmap data version number
///