Skip to main content

IMagicSubMethods

Trait IMagicSubMethods 

Source
pub trait IMagicSubMethods: IMagicSub {
    // Provided methods
    fn track(self, i: impl Into<i32>) -> MagicSignalTrack { ... }
    fn setup(self, chr: impl Into<Character>) -> (Vector3, Vector3) { ... }
    fn manual_update(self) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn track(self, i: impl Into<i32>) -> MagicSignalTrack

Track(i32) overload

Source

fn setup(self, chr: impl Into<Character>) -> (Vector3, Vector3)

Setup(crate::combat::character::Character, *mutcrate::unity_engine::vector3::Vector3, *mutcrate::unity_engine::vector3::Vector3) overload

Source

fn manual_update(self)

ManualUpdate() 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: IMagicSub> IMagicSubMethods for __T

Available on crate feature combat-magicsub only.