Skip to main content

ICinemachineCustomAxis

Trait ICinemachineCustomAxis 

Source
pub trait ICinemachineCustomAxis: IMonoBehaviour {
    // Provided methods
    fn x_inversion(self) -> bool { ... }
    fn set_x_inversion(self, value: bool) { ... }
    fn y_inversion(self) -> bool { ... }
    fn set_y_inversion(self, value: bool) { ... }
    fn fov_top(self) -> f32 { ... }
    fn set_fov_top(self, value: f32) { ... }
    fn fov_middle(self) -> f32 { ... }
    fn set_fov_middle(self, value: f32) { ... }
    fn fov_bottom(self) -> f32 { ... }
    fn set_fov_bottom(self, value: f32) { ... }
    fn allowance(self) -> f32 { ... }
    fn set_allowance(self, value: f32) { ... }
}

Provided Methods§

Source

fn x_inversion(self) -> bool

Source

fn set_x_inversion(self, value: bool)

Source

fn y_inversion(self) -> bool

Source

fn set_y_inversion(self, value: bool)

Source

fn fov_top(self) -> f32

Source

fn set_fov_top(self, value: f32)

Source

fn fov_middle(self) -> f32

Source

fn set_fov_middle(self, value: f32)

Source

fn fov_bottom(self) -> f32

Source

fn set_fov_bottom(self, value: f32)

Source

fn allowance(self) -> f32

Source

fn set_allowance(self, value: f32)

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§