Skip to main content

IConvertChaseArrowMethods

Trait IConvertChaseArrowMethods 

Source
pub trait IConvertChaseArrowMethods: IConvertChaseArrow {
    // Provided methods
    fn get_is_second_attack(self) -> bool { ... }
    fn ctor(self, data: impl Into<CameraDataSet>) { ... }
    fn get_do_chase(self) -> bool { ... }
    fn set_do_chase(self, value: impl Into<bool>) { ... }
    fn get_is_end(self) -> bool { ... }
    fn set_is_end(self, value: impl Into<bool>) { ... }
    fn convert(
        self,
        situation: impl Into<CameraSituation>,
        arg: impl Into<Il2CppString>,
    ) -> CameraPosition { ... }
}

Provided Methods§

Source

fn get_is_second_attack(self) -> bool

get_IsSecondAttack() overload

Source

fn ctor(self, data: impl Into<CameraDataSet>)

.ctor(crate::combat::situation_converter::cameradataset::CameraDataSet) overload

Source

fn get_do_chase(self) -> bool

get_DoChase() overload

Source

fn set_do_chase(self, value: impl Into<bool>)

set_DoChase(bool) overload

Source

fn get_is_end(self) -> bool

get_IsEnd() overload

Source

fn set_is_end(self, value: impl Into<bool>)

set_IsEnd(bool) overload

Source

fn convert( self, situation: impl Into<CameraSituation>, arg: impl Into<Il2CppString>, ) -> CameraPosition

Convert(crate::combat::camerasituation::CameraSituation, ::unity::Il2CppString) 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: IConvertChaseArrow> IConvertChaseArrowMethods for __T

Available on crate feature combat-situation_converter-convertchasearrow only.