Struct rin::blender::ActionCollection [−][src]
pub struct ActionCollection<A> { /* fields omitted */ }
Applies several actions one after another in the order they were added
Implementations
impl<A> ActionCollection<A> where
A: ActionExt,
[src]
impl<A> ActionCollection<A> where
A: ActionExt,
[src]pub fn new() -> ActionCollection<A>
[src]
pub fn push(&mut self, action: A)
[src]
Trait Implementations
impl<A> ActionExt for ActionCollection<A> where
A: ActionExt,
[src]
impl<A> ActionExt for ActionCollection<A> where
A: 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 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 needs_root_motion_reset(&self, t: f32) -> bool
[src]
pub fn min_time_s(&self) -> f32
[src]
pub fn max_time_s(&self) -> f32
[src]
pub fn duration(&self) -> f32
[src]
impl<A> ActionNeedsUpdate for ActionCollection<A> where
A: ActionNeedsUpdate,
[src]
impl<A> ActionNeedsUpdate for ActionCollection<A> where
A: ActionNeedsUpdate,
[src]pub const NEEDS_UPDATE: bool
[src]
impl<A> ActionUpdate for ActionCollection<A> where
A: ActionUpdate,
[src]
impl<A> ActionUpdate for ActionCollection<A> where
A: ActionUpdate,
[src]impl<A> Clone for ActionCollection<A> where
A: Clone,
[src]
impl<A> Clone for ActionCollection<A> where
A: Clone,
[src]pub fn clone(&self) -> ActionCollection<A>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<A> Debug for ActionCollection<A> where
A: Debug,
[src]
impl<A> Debug for ActionCollection<A> where
A: Debug,
[src]impl<A> Default for ActionCollection<A> where
A: Default,
[src]
impl<A> Default for ActionCollection<A> where
A: Default,
[src]pub fn default() -> ActionCollection<A>
[src]
impl<A> FromIterator<A> for ActionCollection<A> where
A: ActionExt,
[src]
impl<A> FromIterator<A> for ActionCollection<A> where
A: ActionExt,
[src]pub fn from_iter<I>(iter: I) -> ActionCollection<A> where
I: IntoIterator<Item = A>,
[src]
I: IntoIterator<Item = A>,
Auto Trait Implementations
impl<A> RefUnwindSafe for ActionCollection<A> where
A: RefUnwindSafe,
A: RefUnwindSafe,
impl<A> Send for ActionCollection<A> where
A: Send,
A: Send,
impl<A> Sync for ActionCollection<A> where
A: Sync,
A: Sync,
impl<A> Unpin for ActionCollection<A> where
A: Unpin,
A: Unpin,
impl<A> UnwindSafe for ActionCollection<A> where
A: UnwindSafe,
A: 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<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,