Skip to main content

ICharacterIKLookAtMethods

Trait ICharacterIKLookAtMethods 

Source
pub trait ICharacterIKLookAtMethods: ICharacterIKLookAt {
    // Provided methods
    fn get_fixed_look_target_height(self) -> bool { ... }
    fn set_fixed_look_target_height(self, value: impl Into<bool>) { ... }
    fn get_cp(self) -> Character { ... }
    fn start(self) { ... }
    fn my_start(self) { ... }
    fn my_late_update(self) { ... }
    fn set_weight(self, w: impl Into<f32>) { ... }
    fn skip(self) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_fixed_look_target_height(self) -> bool

get_FixedLookTargetHeight() overload

Source

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

set_FixedLookTargetHeight(bool) overload

Source

fn get_cp(self) -> Character

get_CP() overload

Source

fn start(self)

Start() overload

Source

fn my_start(self)

MyStart() overload

Source

fn my_late_update(self)

MyLateUpdate() overload

Source

fn set_weight(self, w: impl Into<f32>)

SetWeight(f32) overload

Source

fn skip(self)

Skip() 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: ICharacterIKLookAt> ICharacterIKLookAtMethods for __T

Available on crate feature combat-characteriklookat only.