pub struct VmdClipBuildOptions {
pub honor_property_ik: bool,
}Expand description
Options for controlling VMD clip construction behavior.
Fields§
§honor_property_ik: boolWhen true (the default), the property IK enable/disable data from the
VMD is baked into the clip. When false, the clip omits the property
track entirely, so all IK solvers remain at their runtime default
(enabled) state — useful when comparing against toolchain outputs that
do not preserve property IK.
Trait Implementations§
Source§impl Clone for VmdClipBuildOptions
impl Clone for VmdClipBuildOptions
Source§fn clone(&self) -> VmdClipBuildOptions
fn clone(&self) -> VmdClipBuildOptions
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 VmdClipBuildOptions
Source§impl Debug for VmdClipBuildOptions
impl Debug for VmdClipBuildOptions
Auto Trait Implementations§
impl Freeze for VmdClipBuildOptions
impl RefUnwindSafe for VmdClipBuildOptions
impl Send for VmdClipBuildOptions
impl Sync for VmdClipBuildOptions
impl Unpin for VmdClipBuildOptions
impl UnsafeUnpin for VmdClipBuildOptions
impl UnwindSafe for VmdClipBuildOptions
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