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§
Sourcefn change_cut(self)
fn change_cut(self)
ChangeCut() overload
Sourcefn update_move(self)
fn update_move(self)
UpdateMove() 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: IAutoCamera> IAutoCameraMethods for __T
Available on crate feature
combat-autocamera only.