pub struct NoisePack {
pub noise_lq: NoiseTexture,
pub noise_mq: NoiseTexture,
pub noise_hq: NoiseTexture,
pub noisevol_lq: NoiseTexture,
pub noisevol_hq: NoiseTexture,
}Expand description
Full noise pack used by the comp pass. Names match MD2 sampler conventions
(sampler_noise_lq, sampler_noisevol_hq, …) without the sampler_
prefix.
Fields§
§noise_lq: NoiseTexture§noise_mq: NoiseTexture§noise_hq: NoiseTexture§noisevol_lq: NoiseTexture§noisevol_hq: NoiseTextureImplementations§
Auto Trait Implementations§
impl Freeze for NoisePack
impl RefUnwindSafe for NoisePack
impl Send for NoisePack
impl Sync for NoisePack
impl Unpin for NoisePack
impl UnwindSafe for NoisePack
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more