pub struct PerLODSettings {
pub castShadows: bool,
pub enableBump: bool,
pub enableHue: bool,
pub height: f32,
pub receiveShadows: bool,
pub reflectionProbeUsage: i32,
pub useLightProbes: bool,
pub windQuality: i32,
pub enableSubsurface: Option<bool>,
}Expand description
PerLODSettings is a sub class of the Unity engine since version 5.0.0f4.
Fields§
§castShadows: bool§enableBump: bool§enableHue: bool§height: f32§receiveShadows: bool§reflectionProbeUsage: i32§useLightProbes: bool§windQuality: i32§enableSubsurface: Option<bool>bool: (2018.3.0f2 - 2022.3.2f1)
Trait Implementations§
Source§impl Debug for PerLODSettings
impl Debug for PerLODSettings
Source§impl<'de> Deserialize<'de> for PerLODSettings
impl<'de> Deserialize<'de> for PerLODSettings
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PerLODSettings
impl RefUnwindSafe for PerLODSettings
impl Send for PerLODSettings
impl Sync for PerLODSettings
impl Unpin for PerLODSettings
impl UnwindSafe for PerLODSettings
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