pub trait ICameraControllerSide: IBaseCameraController {
// Provided methods
fn distance_curve(self) -> AnimationCurve { ... }
fn set_distance_curve(self, value: AnimationCurve) { ... }
fn camera_height(self) -> f32 { ... }
fn set_camera_height(self, value: f32) { ... }
fn camera_heigh_with_target(self) -> bool { ... }
fn set_camera_heigh_with_target(self, value: bool) { ... }
}Provided Methods§
fn distance_curve(self) -> AnimationCurve
fn set_distance_curve(self, value: AnimationCurve)
fn camera_height(self) -> f32
fn set_camera_height(self, value: f32)
fn camera_heigh_with_target(self) -> bool
fn set_camera_heigh_with_target(self, value: bool)
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.