pub struct AnimationClipBuilder { /* private fields */ }Implementations§
Source§impl AnimationClipBuilder
impl AnimationClipBuilder
pub fn new() -> Self
pub fn with_bone_track(self, binding: BoneAnimationBinding) -> Self
pub fn with_morph_track(self, binding: MorphAnimationBinding) -> Self
pub fn with_property_track(self, track: PropertyAnimationBinding) -> Self
pub fn push_bone_track(&mut self, binding: BoneAnimationBinding) -> &mut Self
pub fn push_morph_track(&mut self, binding: MorphAnimationBinding) -> &mut Self
pub fn set_property_track( &mut self, track: PropertyAnimationBinding, ) -> &mut Self
pub fn build(self) -> AnimationClip
Trait Implementations§
Source§impl Clone for AnimationClipBuilder
impl Clone for AnimationClipBuilder
Source§fn clone(&self) -> AnimationClipBuilder
fn clone(&self) -> AnimationClipBuilder
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AnimationClipBuilder
impl Debug for AnimationClipBuilder
Source§impl Default for AnimationClipBuilder
impl Default for AnimationClipBuilder
Source§fn default() -> AnimationClipBuilder
fn default() -> AnimationClipBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AnimationClipBuilder
impl RefUnwindSafe for AnimationClipBuilder
impl Send for AnimationClipBuilder
impl Sync for AnimationClipBuilder
impl Unpin for AnimationClipBuilder
impl UnsafeUnpin for AnimationClipBuilder
impl UnwindSafe for AnimationClipBuilder
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more