pub trait IHubMascotCameraMethods: IHubMascotCamera {
// Provided methods
fn get_target(self) -> Vector3 { ... }
fn set_target(self, value: impl Into<Vector3>) { ... }
fn start(self) { ... }
fn update(self) { ... }
fn update_key(self) { ... }
fn commit(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_target(self) -> Vector3
fn get_target(self) -> Vector3
get_Target() overload
Sourcefn set_target(self, value: impl Into<Vector3>)
fn set_target(self, value: impl Into<Vector3>)
set_Target(crate::unity_engine::vector3::Vector3) overload
Sourcefn update_key(self)
fn update_key(self)
UpdateKey() 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: IHubMascotCamera> IHubMascotCameraMethods for __T
Available on crate feature
app-hubmascotcamera only.