pub struct EngineRealisticConfig {
pub width: usize,
pub height: usize,
pub frame_count: usize,
pub onset_frame: usize,
pub pan_speed_background: f32,
pub pan_speed_midground: f32,
pub foreground_speed: f32,
pub jitter_amplitude: f32,
pub reprojection_noise_edge: f32,
pub reprojection_noise_flat: f32,
pub specular_flicker_period: f32,
}Fields§
§width: usize§height: usize§frame_count: usize§onset_frame: usize§pan_speed_background: f32§pan_speed_midground: f32§foreground_speed: f32§jitter_amplitude: f32§reprojection_noise_edge: f32§reprojection_noise_flat: f32§specular_flicker_period: f32Trait Implementations§
Source§impl Clone for EngineRealisticConfig
impl Clone for EngineRealisticConfig
Source§fn clone(&self) -> EngineRealisticConfig
fn clone(&self) -> EngineRealisticConfig
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 moreSource§impl Debug for EngineRealisticConfig
impl Debug for EngineRealisticConfig
Auto Trait Implementations§
impl Freeze for EngineRealisticConfig
impl RefUnwindSafe for EngineRealisticConfig
impl Send for EngineRealisticConfig
impl Sync for EngineRealisticConfig
impl Unpin for EngineRealisticConfig
impl UnsafeUnpin for EngineRealisticConfig
impl UnwindSafe for EngineRealisticConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
Source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian().