pub trait IHubMoveDataMethods: IHubMoveData {
Show 21 methods
// Provided methods
fn get_move_type(self) -> Il2CppString { ... }
fn set_move_type(self, value: impl Into<Il2CppString>) { ... }
fn get_locator(self) -> Il2CppString { ... }
fn set_locator(self, value: impl Into<Il2CppString>) { ... }
fn get_body_name(self) -> Il2CppString { ... }
fn set_body_name(self, value: impl Into<Il2CppString>) { ... }
fn get_face_name(self) -> Il2CppString { ... }
fn set_face_name(self, value: impl Into<Il2CppString>) { ... }
fn get_is_turn(self) -> bool { ... }
fn set_is_turn(self, value: impl Into<bool>) { ... }
fn get_start_sec(self) -> f32 { ... }
fn set_start_sec(self, value: impl Into<f32>) { ... }
fn get_end_sec(self) -> f32 { ... }
fn set_end_sec(self, value: impl Into<f32>) { ... }
fn get_move_speed(self) -> f32 { ... }
fn set_move_speed(self, value: impl Into<f32>) { ... }
fn get_move_sec(self) -> Il2CppString { ... }
fn set_move_sec(self, value: impl Into<Il2CppString>) { ... }
fn on_build(self) { ... }
fn get_debug_name(self) -> Il2CppString { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_move_type(self) -> Il2CppString
fn get_move_type(self) -> Il2CppString
get_MoveType() overload
Sourcefn set_move_type(self, value: impl Into<Il2CppString>)
fn set_move_type(self, value: impl Into<Il2CppString>)
set_MoveType(::unity::Il2CppString) overload
Sourcefn get_locator(self) -> Il2CppString
fn get_locator(self) -> Il2CppString
get_Locator() overload
Sourcefn set_locator(self, value: impl Into<Il2CppString>)
fn set_locator(self, value: impl Into<Il2CppString>)
set_Locator(::unity::Il2CppString) overload
Sourcefn get_body_name(self) -> Il2CppString
fn get_body_name(self) -> Il2CppString
get_BodyName() overload
Sourcefn set_body_name(self, value: impl Into<Il2CppString>)
fn set_body_name(self, value: impl Into<Il2CppString>)
set_BodyName(::unity::Il2CppString) overload
Sourcefn get_face_name(self) -> Il2CppString
fn get_face_name(self) -> Il2CppString
get_FaceName() overload
Sourcefn set_face_name(self, value: impl Into<Il2CppString>)
fn set_face_name(self, value: impl Into<Il2CppString>)
set_FaceName(::unity::Il2CppString) overload
Sourcefn get_is_turn(self) -> bool
fn get_is_turn(self) -> bool
get_IsTurn() overload
Sourcefn set_is_turn(self, value: impl Into<bool>)
fn set_is_turn(self, value: impl Into<bool>)
set_IsTurn(bool) overload
Sourcefn get_start_sec(self) -> f32
fn get_start_sec(self) -> f32
get_StartSec() overload
Sourcefn set_start_sec(self, value: impl Into<f32>)
fn set_start_sec(self, value: impl Into<f32>)
set_StartSec(f32) overload
Sourcefn get_end_sec(self) -> f32
fn get_end_sec(self) -> f32
get_EndSec() overload
Sourcefn set_end_sec(self, value: impl Into<f32>)
fn set_end_sec(self, value: impl Into<f32>)
set_EndSec(f32) overload
Sourcefn get_move_speed(self) -> f32
fn get_move_speed(self) -> f32
get_MoveSpeed() overload
Sourcefn set_move_speed(self, value: impl Into<f32>)
fn set_move_speed(self, value: impl Into<f32>)
set_MoveSpeed(f32) overload
Sourcefn get_move_sec(self) -> Il2CppString
fn get_move_sec(self) -> Il2CppString
get_MoveSec() overload
Sourcefn set_move_sec(self, value: impl Into<Il2CppString>)
fn set_move_sec(self, value: impl Into<Il2CppString>)
set_MoveSec(::unity::Il2CppString) overload
Sourcefn get_debug_name(self) -> Il2CppString
fn get_debug_name(self) -> Il2CppString
GetDebugName() 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: IHubMoveData> IHubMoveDataMethods for __T
Available on crate feature
app-hubmovedata only.