Skip to main content

PlatformBackdrop

Struct PlatformBackdrop 

Source
pub struct PlatformBackdrop {
Show 30 fields pub atmosphere_color: LuaAny, pub atmosphere_ray_light_color_1: LuaAny, pub atmosphere_ray_light_color_2: LuaAny, pub atmosphere_thickness: f32, pub cloud_flow_intensity: f32, pub cloud_flow_seconds: f32, pub cloud_normal_intensity: f32, pub cloud_panning_rate: f32, pub cloud_vertical_offset: f32, pub cloudiness: f32, pub emission_scalar: f32, pub emission_scales_with_shadow: bool, pub flight_approach_speed: f32, pub hero_clouds: &'static [LuaAny], pub hero_clouds_are_emissive: bool, pub light_color: LuaAny, pub light_direction: LuaAny, pub light_intensity_contrast: f32, pub light_radius: f32, pub parallax_strength: LuaAny, pub planet_axis: LuaAny, pub planet_axis_deviation_amplitude: LuaAny, pub planet_axis_deviation_seconds: LuaAny, pub position: LuaAny, pub radius: f32, pub rotation_seconds: f32, pub specular_color: LuaAny, pub specular_intensity: f32, pub surface_normal_intensity: f32, pub surface_vertical_offset: f32,
}

Fields§

§atmosphere_color: LuaAny§atmosphere_ray_light_color_1: LuaAny§atmosphere_ray_light_color_2: LuaAny§atmosphere_thickness: f32§cloud_flow_intensity: f32§cloud_flow_seconds: f32§cloud_normal_intensity: f32§cloud_panning_rate: f32§cloud_vertical_offset: f32§cloudiness: f32§emission_scalar: f32§emission_scales_with_shadow: bool§flight_approach_speed: f32§hero_clouds: &'static [LuaAny]§hero_clouds_are_emissive: bool§light_color: LuaAny§light_direction: LuaAny§light_intensity_contrast: f32§light_radius: f32§parallax_strength: LuaAny§planet_axis: LuaAny§planet_axis_deviation_amplitude: LuaAny§planet_axis_deviation_seconds: LuaAny§position: LuaAny§radius: f32§rotation_seconds: f32§specular_color: LuaAny§specular_intensity: f32§surface_normal_intensity: f32§surface_vertical_offset: f32

Trait Implementations§

Source§

impl Clone for PlatformBackdrop

Source§

fn clone(&self) -> PlatformBackdrop

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for PlatformBackdrop

Source§

impl Debug for PlatformBackdrop

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for PlatformBackdrop

Source§

fn default() -> PlatformBackdrop

Returns the “default value” for a type. Read more
Source§

impl PartialEq for PlatformBackdrop

Source§

fn eq(&self, other: &PlatformBackdrop) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for PlatformBackdrop

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.