mirror of
https://github.com/neocturne/MinedMap.git
synced 2025-03-05 01:24:53 +01:00
core/common: add better explanation to file meta version definitions
This commit is contained in:
parent
e5d9c813ba
commit
f79edb462c
1 changed files with 9 additions and 0 deletions
|
@ -14,12 +14,21 @@ use crate::{io::fs::FileMetaVersion, resource::Biome, types::*, world::layer};
|
||||||
/// Increase to force regeneration of all output files
|
/// Increase to force regeneration of all output files
|
||||||
|
|
||||||
/// MinedMap processed region data version number
|
/// MinedMap processed region data version number
|
||||||
|
///
|
||||||
|
/// 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(0);
|
||||||
|
|
||||||
/// MinedMap map tile data version number
|
/// MinedMap map tile data version number
|
||||||
|
///
|
||||||
|
/// Increase when the generation of map tiles from processed regions changes
|
||||||
|
/// (because of code changes in tile generation)
|
||||||
pub const MAP_FILE_META_VERSION: FileMetaVersion = FileMetaVersion(0);
|
pub const MAP_FILE_META_VERSION: FileMetaVersion = FileMetaVersion(0);
|
||||||
|
|
||||||
/// MinedMap lightmap data version number
|
/// MinedMap lightmap data version number
|
||||||
|
///
|
||||||
|
/// 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(0);
|
||||||
|
|
||||||
/// Coordinate pair of a generated tile
|
/// Coordinate pair of a generated tile
|
||||||
|
|
Loading…
Add table
Reference in a new issue