pub struct FogEnvironmentData {
pub self_key: Option<Uoid>,
pub synched: SynchedObjectData,
pub fog_type: FogType,
pub start: f32,
pub end: f32,
pub density: f32,
pub color: Color,
}Expand description
Parsed plFogEnvironment data.
Fields§
§self_key: Option<Uoid>§synched: SynchedObjectData§fog_type: FogType§start: f32§end: f32§density: f32§color: ColorImplementations§
Trait Implementations§
Source§impl Clone for FogEnvironmentData
impl Clone for FogEnvironmentData
Source§fn clone(&self) -> FogEnvironmentData
fn clone(&self) -> FogEnvironmentData
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for FogEnvironmentData
impl RefUnwindSafe for FogEnvironmentData
impl Send for FogEnvironmentData
impl Sync for FogEnvironmentData
impl Unpin for FogEnvironmentData
impl UnsafeUnpin for FogEnvironmentData
impl UnwindSafe for FogEnvironmentData
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more