Skip to main content

IHubLookAtControllerMethods

Trait IHubLookAtControllerMethods 

Source
pub trait IHubLookAtControllerMethods: IHubLookAtController {
Show 17 methods // Provided methods fn get_follow_time(self) -> f32 { ... } fn set_follow_time(self, value: impl Into<f32>) { ... } fn get_is_disabled_param(self) -> bool { ... } fn set_is_disabled_param(self, value: impl Into<bool>) { ... } fn set_target_transform(self, target: impl Into<Transform>) { ... } fn set_target_position(self, position: impl Into<Vector3>) { ... } fn disable_follow(self) { ... } fn enable_follow(self) { ... } fn instant(self) { ... } fn enable_vertical_limit(self) { ... } fn disable_vertical_limit(self) { ... } fn awake(self) { ... } fn start(self) { ... } fn update(self) { ... } fn on_draw_gizmos(self) { ... } fn on_destroy(self) { ... } fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_follow_time(self) -> f32

get_FollowTime() overload

Source

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

set_FollowTime(f32) overload

Source

fn get_is_disabled_param(self) -> bool

get_IsDisabledParam() overload

Source

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

set_IsDisabledParam(bool) overload

Source

fn set_target_transform(self, target: impl Into<Transform>)

SetTargetTransform(crate::unity_engine::transform::Transform) overload

Source

fn set_target_position(self, position: impl Into<Vector3>)

SetTargetPosition(crate::unity_engine::vector3::Vector3) overload

Source

fn disable_follow(self)

DisableFollow() overload

Source

fn enable_follow(self)

EnableFollow() overload

Source

fn instant(self)

Instant() overload

Source

fn enable_vertical_limit(self)

EnableVerticalLimit() overload

Source

fn disable_vertical_limit(self)

DisableVerticalLimit() overload

Source

fn awake(self)

Awake() overload

Source

fn start(self)

Start() overload

Source

fn update(self)

Update() overload

Source

fn on_draw_gizmos(self)

OnDrawGizmos() overload

Source

fn on_destroy(self)

OnDestroy() 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: IHubLookAtController> IHubLookAtControllerMethods for __T

Available on crate feature app-hublookatcontroller only.