Skip to main content

DecalManagerData

Struct DecalManagerData 

Source
pub struct DecalManagerData {
Show 23 fields pub name: String, pub manager_type: DecalManagerType, pub mat_pre_shade: Option<String>, pub mat_rt_shade: Option<String>, pub target_names: Vec<String>, pub max_num_verts: u32, pub max_num_idx: u32, pub wait_on_enable: u32, pub intensity: f32, pub wet_length: f32, pub ramp_end: f32, pub decay_start: f32, pub life_span: f32, pub grid_size_u: f32, pub grid_size_v: f32, pub scale: [f32; 3], pub party_time: f32, pub notify_names: Vec<String>, pub init_uvw: Option<[f32; 3]>, pub final_uvw: Option<[f32; 3]>, pub wake_default_dir: Option<[f32; 3]>, pub wake_anim_wgt: Option<f32>, pub wake_vel_wgt: Option<f32>,
}
Expand description

Parsed plDynaDecalMgr data from PRP.

Fields§

§name: String§manager_type: DecalManagerType§mat_pre_shade: Option<String>§mat_rt_shade: Option<String>§target_names: Vec<String>§max_num_verts: u32§max_num_idx: u32§wait_on_enable: u32§intensity: f32§wet_length: f32§ramp_end: f32§decay_start: f32§life_span: f32§grid_size_u: f32§grid_size_v: f32§scale: [f32; 3]§party_time: f32§notify_names: Vec<String>§init_uvw: Option<[f32; 3]>§final_uvw: Option<[f32; 3]>§wake_default_dir: Option<[f32; 3]>§wake_anim_wgt: Option<f32>§wake_vel_wgt: Option<f32>

Trait Implementations§

Source§

impl Clone for DecalManagerData

Source§

fn clone(&self) -> DecalManagerData

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for DecalManagerData

Source§

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

Formats the value using the given formatter. Read more

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.