Struct rin::blender::ActionMix [−][src]
pub struct ActionMix<A1, A2> { /* fields omitted */ }
Mixes two different actions by applying the two at the same time
Usually only useful for actions that apply to different elements.
Implementations
impl<A1, A2> ActionMix<A1, A2> where
A1: ActionExt,
A2: ActionExt,
[src]
impl<A1, A2> ActionMix<A1, A2> where
A1: ActionExt,
A2: ActionExt,
[src]Trait Implementations
impl<A1, A2> ActionExt for ActionMix<A1, A2> where
A1: ActionExt,
A2: ActionExt,
[src]
impl<A1, A2> ActionExt for ActionMix<A1, A2> where
A1: ActionExt,
A2: ActionExt,
[src]pub fn orientation_at(
&self,
object: &str,
t: f32,
current_value: &Unit<Quaternion<f32>>
) -> Option<Unit<Quaternion<f32>>>
[src]
&self,
object: &str,
t: f32,
current_value: &Unit<Quaternion<f32>>
) -> Option<Unit<Quaternion<f32>>>
pub fn orientation_from_axis_angle_at(
&self,
object: &str,
t: f32,
current_value: &Unit<Quaternion<f32>>
) -> Option<Unit<Quaternion<f32>>>
[src]
&self,
object: &str,
t: f32,
current_value: &Unit<Quaternion<f32>>
) -> Option<Unit<Quaternion<f32>>>
pub fn orientation_from_euler_at(
&self,
object: &str,
t: f32,
current_value: &Unit<Quaternion<f32>>,
rot_order: RotOrder
) -> Option<Unit<Quaternion<f32>>>
[src]
&self,
object: &str,
t: f32,
current_value: &Unit<Quaternion<f32>>,
rot_order: RotOrder
) -> Option<Unit<Quaternion<f32>>>
pub fn location_at(
&self,
object: &str,
t: f32,
current_value: &Point<f32, U3>
) -> Option<Point<f32, U3>>
[src]
&self,
object: &str,
t: f32,
current_value: &Point<f32, U3>
) -> Option<Point<f32, U3>>
pub fn scale_at(
&self,
object: &str,
t: f32,
current_value: &Matrix<f32, U3, U1, <DefaultAllocator as Allocator<f32, U3, U1>>::Buffer>
) -> Option<Matrix<f32, U3, U1, <DefaultAllocator as Allocator<f32, U3, U1>>::Buffer>>
[src]
&self,
object: &str,
t: f32,
current_value: &Matrix<f32, U3, U1, <DefaultAllocator as Allocator<f32, U3, U1>>::Buffer>
) -> Option<Matrix<f32, U3, U1, <DefaultAllocator as Allocator<f32, U3, U1>>::Buffer>>
pub fn rotation_at(
&self,
object: &str,
_t: f32,
_current_value: &Rotation
) -> Option<Rotation>
[src]
&self,
object: &str,
_t: f32,
_current_value: &Rotation
) -> Option<Rotation>
pub fn keyblock_at(&self, keyblock: &str, t: f32) -> Option<f32>
[src]
pub fn hide_view_at(&self, object: &str, t: f32) -> Option<bool>
[src]
pub fn hide_render_at(&self, object: &str, t: f32) -> Option<bool>
[src]
pub fn root_motion_location_at(
&self,
object: &str,
t: f32,
current_value: &Point<f32, U3>,
prev_positions: &mut HashMap<String, Option<(f32, Point<f32, U3>)>, RandomState>
) -> Option<(Point<f32, U3>, Matrix<f32, U3, U1, <DefaultAllocator as Allocator<f32, U3, U1>>::Buffer>)>
[src]
&self,
object: &str,
t: f32,
current_value: &Point<f32, U3>,
prev_positions: &mut HashMap<String, Option<(f32, Point<f32, U3>)>, RandomState>
) -> Option<(Point<f32, U3>, Matrix<f32, U3, U1, <DefaultAllocator as Allocator<f32, U3, U1>>::Buffer>)>
pub fn root_motion_orientation_at(
&self,
object: &str,
t: f32,
current_value: &Unit<Quaternion<f32>>,
prev_orientations: &mut HashMap<String, Option<(f32, Unit<Quaternion<f32>>)>, RandomState>
) -> Option<(Unit<Quaternion<f32>>, Unit<Quaternion<f32>>)>
[src]
&self,
object: &str,
t: f32,
current_value: &Unit<Quaternion<f32>>,
prev_orientations: &mut HashMap<String, Option<(f32, Unit<Quaternion<f32>>)>, RandomState>
) -> Option<(Unit<Quaternion<f32>>, Unit<Quaternion<f32>>)>
pub fn needs_root_motion_reset(&self, t: f32) -> bool
[src]
pub fn name(&self) -> &str
[src]
pub fn root_motion_remove(&self, t: Option<f32>) -> RootMotionRemove
[src]
pub fn reset_root_motion_positions(
&self,
object: &str,
t: f32,
current_value: &Point<f32, U3>,
prev_positions: &mut HashMap<String, Option<(f32, Point<f32, U3>)>, RandomState>
)
[src]
&self,
object: &str,
t: f32,
current_value: &Point<f32, U3>,
prev_positions: &mut HashMap<String, Option<(f32, Point<f32, U3>)>, RandomState>
)
pub fn reset_root_motion_orientations(
&self,
object: &str,
t: f32,
current_value: &Unit<Quaternion<f32>>,
prev_orientations: &mut HashMap<String, Option<(f32, Unit<Quaternion<f32>>)>, RandomState>
)
[src]
&self,
object: &str,
t: f32,
current_value: &Unit<Quaternion<f32>>,
prev_orientations: &mut HashMap<String, Option<(f32, Unit<Quaternion<f32>>)>, RandomState>
)
pub fn min_time_s(&self) -> f32
[src]
pub fn max_time_s(&self) -> f32
[src]
pub fn duration(&self) -> f32
[src]
impl<A1, A2> ActionNeedsUpdate for ActionMix<A1, A2> where
A1: ActionNeedsUpdate,
A2: ActionNeedsUpdate,
[src]
impl<A1, A2> ActionNeedsUpdate for ActionMix<A1, A2> where
A1: ActionNeedsUpdate,
A2: ActionNeedsUpdate,
[src]pub const NEEDS_UPDATE: bool
[src]
impl<A1, A2> ActionUpdate for ActionMix<A1, A2> where
A1: ActionUpdate,
A2: ActionUpdate,
[src]
impl<A1, A2> ActionUpdate for ActionMix<A1, A2> where
A1: ActionUpdate,
A2: ActionUpdate,
[src]impl<'de, A1, A2> Deserialize<'de> for ActionMix<A1, A2> where
A1: Deserialize<'de>,
A2: Deserialize<'de>,
[src]
impl<'de, A1, A2> Deserialize<'de> for ActionMix<A1, A2> where
A1: Deserialize<'de>,
A2: Deserialize<'de>,
[src]pub fn deserialize<__D>(
__deserializer: __D
) -> Result<ActionMix<A1, A2>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
[src]
__deserializer: __D
) -> Result<ActionMix<A1, A2>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
impl<A1, A2> Serialize for ActionMix<A1, A2> where
A1: Serialize,
A2: Serialize,
[src]
impl<A1, A2> Serialize for ActionMix<A1, A2> where
A1: Serialize,
A2: Serialize,
[src]pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
[src]
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Auto Trait Implementations
impl<A1, A2> RefUnwindSafe for ActionMix<A1, A2> where
A1: RefUnwindSafe,
A2: RefUnwindSafe,
A1: RefUnwindSafe,
A2: RefUnwindSafe,
impl<A1, A2> Send for ActionMix<A1, A2> where
A1: Send,
A2: Send,
A1: Send,
A2: Send,
impl<A1, A2> Sync for ActionMix<A1, A2> where
A1: Sync,
A2: Sync,
A1: Sync,
A2: Sync,
impl<A1, A2> Unpin for ActionMix<A1, A2> where
A1: Unpin,
A2: Unpin,
A1: Unpin,
A2: Unpin,
impl<A1, A2> UnwindSafe for ActionMix<A1, A2> where
A1: UnwindSafe,
A2: UnwindSafe,
A1: UnwindSafe,
A2: UnwindSafe,
Blanket Implementations
impl<T> DowncastSync for T where
T: Any + Send + Sync,
[src]
impl<T> DowncastSync for T where
T: Any + Send + Sync,
[src]impl<T> Serialize for T where
T: Serialize + ?Sized,
[src]
impl<T> Serialize for T where
T: Serialize + ?Sized,
[src]pub fn erased_serialize(
&self,
serializer: &mut dyn Serializer
) -> Result<Ok, Error>
[src]
&self,
serializer: &mut dyn Serializer
) -> Result<Ok, Error>
impl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>,
[src]
impl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>,
[src]pub fn to_subset(&self) -> Option<SS>
[src]
pub fn is_in_subset(&self) -> bool
[src]
pub fn to_subset_unchecked(&self) -> SS
[src]
pub fn from_subset(element: &SS) -> SP
[src]
impl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>,
[src]
impl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>,
[src]pub fn to_subset(&self) -> Option<SS>
[src]
pub fn is_in_subset(&self) -> bool
[src]
pub fn to_subset_unchecked(&self) -> SS
[src]
pub fn from_subset(element: &SS) -> SP
[src]
impl<A> ActionUpdateExt for A where
A: ActionExt + ActionUpdate,
[src]
A: ActionExt + ActionUpdate,
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,