pub enum EngineAnimationAddressabilityV1 {
GltfAssetLabel,
}Expand description
Known animation-asset addressability behavior.
Variants§
GltfAssetLabel
Bevy addresses each glTF animation by its source-array index through
GltfAssetLabel::Animation(index); animation names populate Bevy’s
separate named-animation map rather than this typed label.
Trait Implementations§
Source§impl Clone for EngineAnimationAddressabilityV1
impl Clone for EngineAnimationAddressabilityV1
Source§fn clone(&self) -> EngineAnimationAddressabilityV1
fn clone(&self) -> EngineAnimationAddressabilityV1
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 moreimpl Copy for EngineAnimationAddressabilityV1
Source§impl<'de> Deserialize<'de> for EngineAnimationAddressabilityV1
impl<'de> Deserialize<'de> for EngineAnimationAddressabilityV1
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for EngineAnimationAddressabilityV1
Source§impl Ord for EngineAnimationAddressabilityV1
impl Ord for EngineAnimationAddressabilityV1
Source§fn cmp(&self, other: &EngineAnimationAddressabilityV1) -> Ordering
fn cmp(&self, other: &EngineAnimationAddressabilityV1) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for EngineAnimationAddressabilityV1
impl PartialOrd for EngineAnimationAddressabilityV1
impl StructuralPartialEq for EngineAnimationAddressabilityV1
Auto Trait Implementations§
impl Freeze for EngineAnimationAddressabilityV1
impl RefUnwindSafe for EngineAnimationAddressabilityV1
impl Send for EngineAnimationAddressabilityV1
impl Sync for EngineAnimationAddressabilityV1
impl Unpin for EngineAnimationAddressabilityV1
impl UnsafeUnpin for EngineAnimationAddressabilityV1
impl UnwindSafe for EngineAnimationAddressabilityV1
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