Skip to main content

IMagicSignalTrackMethods

Trait IMagicSignalTrackMethods 

Source
pub trait IMagicSignalTrackMethods: IMagicSignalTrack {
    // Provided methods
    fn get_end_time(self) -> f32 { ... }
    fn set_end_time(self, value: impl Into<f32>) { ... }
    fn ctor(
        self,
        title: impl Into<Il2CppString>,
        help: impl Into<Il2CppString>,
        is_sub_bullet: impl Into<bool>,
    ) { ... }
    fn find(self, cmd: impl Into<MagicCommand>) -> MagicSignal { ... }
}

Provided Methods§

Source

fn get_end_time(self) -> f32

get_EndTime() overload

Source

fn set_end_time(self, value: impl Into<f32>)

set_EndTime(f32) overload

Source

fn ctor( self, title: impl Into<Il2CppString>, help: impl Into<Il2CppString>, is_sub_bullet: impl Into<bool>, )

.ctor(::unity::Il2CppString, ::unity::Il2CppString, bool) overload

Source

fn find(self, cmd: impl Into<MagicCommand>) -> MagicSignal

Find(crate::combat::magiccommand::MagicCommand) 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: IMagicSignalTrack> IMagicSignalTrackMethods for __T

Available on crate feature combat-magicsignaltrack only.