pub struct ParticleSystemForceFieldParameters {Show 18 fields
pub m_DirectionCurveX: MinMaxCurve,
pub m_DirectionCurveY: MinMaxCurve,
pub m_DirectionCurveZ: MinMaxCurve,
pub m_DragCurve: MinMaxCurve,
pub m_EndRange: f32,
pub m_GravityCurve: MinMaxCurve,
pub m_GravityFocus: f32,
pub m_Length: f32,
pub m_MultiplyDragByParticleSize: bool,
pub m_MultiplyDragByParticleVelocity: bool,
pub m_RotationAttractionCurve: MinMaxCurve,
pub m_RotationRandomness: Vector2f,
pub m_RotationSpeedCurve: MinMaxCurve,
pub m_Shape: i32,
pub m_StartRange: f32,
pub m_VectorField: PPtr,
pub m_VectorFieldAttractionCurve: MinMaxCurve,
pub m_VectorFieldSpeedCurve: MinMaxCurve,
}Expand description
ParticleSystemForceFieldParameters is a sub class of the Unity engine since version 2018.3.0f2.
Fields§
§m_DirectionCurveX: MinMaxCurve§m_DirectionCurveY: MinMaxCurve§m_DirectionCurveZ: MinMaxCurve§m_DragCurve: MinMaxCurve§m_EndRange: f32§m_GravityCurve: MinMaxCurve§m_GravityFocus: f32§m_Length: f32§m_MultiplyDragByParticleSize: bool§m_MultiplyDragByParticleVelocity: bool§m_RotationAttractionCurve: MinMaxCurve§m_RotationRandomness: Vector2f§m_RotationSpeedCurve: MinMaxCurve§m_Shape: i32§m_StartRange: f32§m_VectorField: PPtrPPtr<Texture3D>: (2018.3.0f2 - 2022.3.2f1)
m_VectorFieldAttractionCurve: MinMaxCurve§m_VectorFieldSpeedCurve: MinMaxCurveTrait Implementations§
Source§impl<'de> Deserialize<'de> for ParticleSystemForceFieldParameters
impl<'de> Deserialize<'de> for ParticleSystemForceFieldParameters
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ParticleSystemForceFieldParameters, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ParticleSystemForceFieldParameters, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for ParticleSystemForceFieldParameters
impl Serialize for ParticleSystemForceFieldParameters
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for ParticleSystemForceFieldParameters
impl RefUnwindSafe for ParticleSystemForceFieldParameters
impl Send for ParticleSystemForceFieldParameters
impl Sync for ParticleSystemForceFieldParameters
impl Unpin for ParticleSystemForceFieldParameters
impl UnsafeUnpin for ParticleSystemForceFieldParameters
impl UnwindSafe for ParticleSystemForceFieldParameters
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