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§
Sourcefn get_follow_time(self) -> f32
fn get_follow_time(self) -> f32
get_FollowTime() overload
Sourcefn set_follow_time(self, value: impl Into<f32>)
fn set_follow_time(self, value: impl Into<f32>)
set_FollowTime(f32) overload
Sourcefn get_is_disabled_param(self) -> bool
fn get_is_disabled_param(self) -> bool
get_IsDisabledParam() overload
Sourcefn set_is_disabled_param(self, value: impl Into<bool>)
fn set_is_disabled_param(self, value: impl Into<bool>)
set_IsDisabledParam(bool) overload
Sourcefn set_target_transform(self, target: impl Into<Transform>)
fn set_target_transform(self, target: impl Into<Transform>)
SetTargetTransform(crate::unity_engine::transform::Transform) overload
Sourcefn set_target_position(self, position: impl Into<Vector3>)
fn set_target_position(self, position: impl Into<Vector3>)
SetTargetPosition(crate::unity_engine::vector3::Vector3) overload
Sourcefn disable_follow(self)
fn disable_follow(self)
DisableFollow() overload
Sourcefn enable_follow(self)
fn enable_follow(self)
EnableFollow() overload
Sourcefn enable_vertical_limit(self)
fn enable_vertical_limit(self)
EnableVerticalLimit() overload
Sourcefn disable_vertical_limit(self)
fn disable_vertical_limit(self)
DisableVerticalLimit() overload
Sourcefn on_draw_gizmos(self)
fn on_draw_gizmos(self)
OnDrawGizmos() overload
Sourcefn on_destroy(self)
fn on_destroy(self)
OnDestroy() 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: IHubLookAtController> IHubLookAtControllerMethods for __T
Available on crate feature
app-hublookatcontroller only.