pub trait IBakerMethods: IBaker {
Show 19 methods
// Provided methods
fn open_user_manual(self) { ... }
fn open_script_reference(self) { ... }
fn support_group(self) { ... }
fn as_thread(self) { ... }
fn get_is_baking(self) -> bool { ... }
fn set_is_baking(self, value: impl Into<bool>) { ... }
fn get_baking_progress(self) -> f32 { ... }
fn set_baking_progress(self, value: impl Into<f32>) { ... }
fn get_character_root(self) -> Transform { ... }
fn on_start_baking(self) { ... }
fn on_set_loop_frame(self, time: impl Into<f32>) { ... }
fn on_set_curves(self) -> AnimationClip { ... }
fn on_set_keyframes(self, time: impl Into<f32>, last_frame: impl Into<bool>) { ... }
fn get_clip_length(self) -> f32 { ... }
fn set_clip_length(self, value: impl Into<f32>) { ... }
fn bake_clip(self) { ... }
fn start_baking(self) { ... }
fn stop_baking(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn open_user_manual(self)
fn open_user_manual(self)
OpenUserManual() overload
Sourcefn open_script_reference(self)
fn open_script_reference(self)
OpenScriptReference() overload
Sourcefn support_group(self)
fn support_group(self)
SupportGroup() overload
Sourcefn get_is_baking(self) -> bool
fn get_is_baking(self) -> bool
get_isBaking() overload
Sourcefn set_is_baking(self, value: impl Into<bool>)
fn set_is_baking(self, value: impl Into<bool>)
set_isBaking(bool) overload
Sourcefn get_baking_progress(self) -> f32
fn get_baking_progress(self) -> f32
get_bakingProgress() overload
Sourcefn set_baking_progress(self, value: impl Into<f32>)
fn set_baking_progress(self, value: impl Into<f32>)
set_bakingProgress(f32) overload
Sourcefn get_character_root(self) -> Transform
fn get_character_root(self) -> Transform
GetCharacterRoot() overload
Sourcefn on_start_baking(self)
fn on_start_baking(self)
OnStartBaking() overload
Sourcefn on_set_loop_frame(self, time: impl Into<f32>)
fn on_set_loop_frame(self, time: impl Into<f32>)
OnSetLoopFrame(f32) overload
Sourcefn on_set_curves(self) -> AnimationClip
fn on_set_curves(self) -> AnimationClip
OnSetCurves(*mutcrate::unity_engine::animationclip::AnimationClip) overload
Sourcefn on_set_keyframes(self, time: impl Into<f32>, last_frame: impl Into<bool>)
fn on_set_keyframes(self, time: impl Into<f32>, last_frame: impl Into<bool>)
OnSetKeyframes(f32, bool) overload
Sourcefn get_clip_length(self) -> f32
fn get_clip_length(self) -> f32
get_clipLength() overload
Sourcefn set_clip_length(self, value: impl Into<f32>)
fn set_clip_length(self, value: impl Into<f32>)
set_clipLength(f32) overload
Sourcefn start_baking(self)
fn start_baking(self)
StartBaking() overload
Sourcefn stop_baking(self)
fn stop_baking(self)
StopBaking() overload
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<__T: IBaker> IBakerMethods for __T
Available on crate feature
root_motion-baker only.