pub struct Debone {
pub enable: bool,
pub threshold: f32,
pub all_or_none: bool,
}
Expand description
Arguments for debone
post-process step.
Fields§
§enable: bool
Whether to enable the step. Default: false
threshold: f32
Threshold for considering bone necessary. Default: 1.0
all_or_none: bool
Whether to require all bones to meet the threshold before removing any. Default: false
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Debone
impl RefUnwindSafe for Debone
impl Send for Debone
impl Sync for Debone
impl Unpin for Debone
impl UnwindSafe for Debone
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