Skip to main content

IActionGranBaseMethods

Trait IActionGranBaseMethods 

Source
pub trait IActionGranBaseMethods: IActionGranBase {
    // Provided methods
    fn get_is_sky_land_combat(self) -> bool { ... }
    fn ctor(self, ghr: impl Into<Character>) { ... }
    fn get_move_act(self) -> ActionGranBase_MoveAct { ... }
    fn set_move_act(self, value: impl Into<ActionGranBase_MoveAct>) { ... }
    fn move_to(self, goal: impl Into<FXZ>) -> f32 { ... }
    fn run_to(self, goal: impl Into<FXZ>) -> f32 { ... }
    fn warp(self, goal: impl Into<FXZ>) -> f32 { ... }
    fn move_end(self) { ... }
    fn get_evasion_hash(self) -> i32 { ... }
    fn adjust_ground_level(self, side: impl Into<i32>) { ... }
}

Provided Methods§

Source

fn get_is_sky_land_combat(self) -> bool

get_IsSkyLandCombat() overload

Source

fn ctor(self, ghr: impl Into<Character>)

.ctor(crate::combat::character::Character) overload

Source

fn get_move_act(self) -> ActionGranBase_MoveAct

get_moveAct() overload

Source

fn set_move_act(self, value: impl Into<ActionGranBase_MoveAct>)

set_moveAct(crate::combat::actiongranbase::ActionGranBase_MoveAct) overload

Source

fn move_to(self, goal: impl Into<FXZ>) -> f32

MoveTo(crate::combat::fxz::FXZ) overload

Source

fn run_to(self, goal: impl Into<FXZ>) -> f32

RunTo(crate::combat::fxz::FXZ) overload

Source

fn warp(self, goal: impl Into<FXZ>) -> f32

Warp(crate::combat::fxz::FXZ) overload

Source

fn move_end(self)

MoveEnd() overload

Source

fn get_evasion_hash(self) -> i32

GetEvasionHash() overload

Source

fn adjust_ground_level(self, side: impl Into<i32>)

AdjustGroundLevel(i32) 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: IActionGranBase> IActionGranBaseMethods for __T

Available on crate feature combat-actiongranbase only.