Skip to main content

IBakerMethods

Trait IBakerMethods 

Source
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§

Source

fn open_user_manual(self)

OpenUserManual() overload

Source

fn open_script_reference(self)

OpenScriptReference() overload

Source

fn support_group(self)

SupportGroup() overload

Source

fn as_thread(self)

ASThread() overload

Source

fn get_is_baking(self) -> bool

get_isBaking() overload

Source

fn set_is_baking(self, value: impl Into<bool>)

set_isBaking(bool) overload

Source

fn get_baking_progress(self) -> f32

get_bakingProgress() overload

Source

fn set_baking_progress(self, value: impl Into<f32>)

set_bakingProgress(f32) overload

Source

fn get_character_root(self) -> Transform

GetCharacterRoot() overload

Source

fn on_start_baking(self)

OnStartBaking() overload

Source

fn on_set_loop_frame(self, time: impl Into<f32>)

OnSetLoopFrame(f32) overload

Source

fn on_set_curves(self) -> AnimationClip

OnSetCurves(*mutcrate::unity_engine::animationclip::AnimationClip) overload

Source

fn on_set_keyframes(self, time: impl Into<f32>, last_frame: impl Into<bool>)

OnSetKeyframes(f32, bool) overload

Source

fn get_clip_length(self) -> f32

get_clipLength() overload

Source

fn set_clip_length(self, value: impl Into<f32>)

set_clipLength(f32) overload

Source

fn bake_clip(self)

BakeClip() overload

Source

fn start_baking(self)

StartBaking() overload

Source

fn stop_baking(self)

StopBaking() overload

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: IBaker> IBakerMethods for __T

Available on crate feature root_motion-baker only.