pub struct GitAreaProperties {Show 17 fields
pub unescapable: bool,
pub stealth_xp_max: u32,
pub stealth_xp_current: u32,
pub stealth_xp_loss: u32,
pub stealth_xp_enabled: bool,
pub trans_pending: bool,
pub trans_pend_next_id: u8,
pub trans_pend_curr_id: u8,
pub sun_fog_color: u32,
pub music_delay: i32,
pub music_day: i32,
pub music_night: i32,
pub music_battle: i32,
pub ambient_snd_day: i32,
pub ambient_snd_night: i32,
pub ambient_snd_day_vol: i32,
pub ambient_snd_nit_vol: i32,
}Expand description
Area-level properties (music, ambient sound, stealth XP, fog).
This is a single Struct in the GIT root (field label AreaProperties).
Fields§
§unescapable: boolUnescapable flag (Unescapable).
stealth_xp_max: u32Stealth XP maximum (StealthXPMax).
stealth_xp_current: u32Current stealth XP count (StealthXPCurrent). Save-game state.
stealth_xp_loss: u32Stealth XP loss per detection (StealthXPLoss).
stealth_xp_enabled: boolStealth XP enabled flag (StealthXPEnabled).
trans_pending: boolTransition pending flag (TransPending). Save-game state.
trans_pend_next_id: u8Pending transition next ID (TransPendNextID). Save-game state.
trans_pend_curr_id: u8Pending transition current ID (TransPendCurrID). Save-game state.
sun_fog_color: u32Sun/fog color packed as RGBA (SunFogColor).
music_delay: i32Music delay in ms (MusicDelay).
music_day: i32Daytime music track ID (MusicDay). References ambientmusic.2da.
music_night: i32Night-time music track ID (MusicNight). References ambientmusic.2da.
music_battle: i32Battle music track ID (MusicBattle). References ambientmusic.2da.
ambient_snd_day: i32Daytime ambient sound ID (AmbientSndDay). References ambientsound.2da.
ambient_snd_night: i32Night-time ambient sound ID (AmbientSndNight). References ambientsound.2da.
ambient_snd_day_vol: i32Daytime ambient sound volume (AmbientSndDayVol).
ambient_snd_nit_vol: i32Night-time ambient sound volume (AmbientSndNitVol).
Trait Implementations§
Source§impl Clone for GitAreaProperties
impl Clone for GitAreaProperties
Source§fn clone(&self) -> GitAreaProperties
fn clone(&self) -> GitAreaProperties
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more