pub enum GroundPlaneMode {
None,
Tile,
ShadowOnly,
TileReflection,
}Expand description
Ground plane rendering mode.
Variants§
None
No ground plane.
Tile
Tiled ground plane with subtle grid lines.
ShadowOnly
Shadow only (no visible ground plane, just shadows).
TileReflection
Tiled ground plane with reflections.
Trait Implementations§
Source§impl Clone for GroundPlaneMode
impl Clone for GroundPlaneMode
Source§fn clone(&self) -> GroundPlaneMode
fn clone(&self) -> GroundPlaneMode
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 GroundPlaneMode
impl Debug for GroundPlaneMode
Source§impl Default for GroundPlaneMode
impl Default for GroundPlaneMode
Source§fn default() -> GroundPlaneMode
fn default() -> GroundPlaneMode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GroundPlaneMode
impl<'de> Deserialize<'de> for GroundPlaneMode
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
Source§impl PartialEq for GroundPlaneMode
impl PartialEq for GroundPlaneMode
Source§impl Serialize for GroundPlaneMode
impl Serialize for GroundPlaneMode
impl Copy for GroundPlaneMode
impl Eq for GroundPlaneMode
impl StructuralPartialEq for GroundPlaneMode
Auto Trait Implementations§
impl Freeze for GroundPlaneMode
impl RefUnwindSafe for GroundPlaneMode
impl Send for GroundPlaneMode
impl Sync for GroundPlaneMode
impl Unpin for GroundPlaneMode
impl UnsafeUnpin for GroundPlaneMode
impl UnwindSafe for GroundPlaneMode
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