Skip to main content

IAutoCameraMethods

Trait IAutoCameraMethods 

Source
pub trait IAutoCameraMethods: IAutoCamera {
    // Provided methods
    fn init(self) { ... }
    fn change_cut(self) { ... }
    fn tick(self) { ... }
    fn activate(self) { ... }
    fn update_move(self) { ... }
    fn clamp(self) -> bool { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn init(self)

Init() overload

Source

fn change_cut(self)

ChangeCut() overload

Source

fn tick(self)

Tick() overload

Source

fn activate(self)

Activate() overload

Source

fn update_move(self)

UpdateMove() overload

Source

fn clamp(self) -> bool

Clamp() 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: IAutoCamera> IAutoCameraMethods for __T

Available on crate feature combat-autocamera only.