pub trait ILaterTalkSetter_UnitDataMethods: ILaterTalkSetter_UnitData {
Show 15 methods
// Provided methods
fn get_unit(self) -> Unit { ... }
fn set_unit(self, value: impl Into<Unit>) { ... }
fn get_is_alive(self) -> bool { ... }
fn set_is_alive(self, value: impl Into<bool>) { ... }
fn get_marriage(self) -> Unit { ... }
fn set_marriage(self, value: impl Into<Unit>) { ... }
fn get_map_name(self) -> Il2CppString { ... }
fn set_map_name(self, value: impl Into<Il2CppString>) { ... }
fn get_map_degree(self) -> i32 { ... }
fn set_map_degree(self, value: impl Into<i32>) { ... }
fn get_light_degree(self) -> i32 { ... }
fn set_light_degree(self, value: impl Into<i32>) { ... }
fn get_end_disp_time(self) -> f32 { ... }
fn set_end_disp_time(self, value: impl Into<f32>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_is_alive(self) -> bool
fn get_is_alive(self) -> bool
get_IsAlive() overload
Sourcefn set_is_alive(self, value: impl Into<bool>)
fn set_is_alive(self, value: impl Into<bool>)
set_IsAlive(bool) overload
Sourcefn get_marriage(self) -> Unit
fn get_marriage(self) -> Unit
get_Marriage() overload
Sourcefn set_marriage(self, value: impl Into<Unit>)
fn set_marriage(self, value: impl Into<Unit>)
set_Marriage(crate::app::unit::Unit) overload
Sourcefn get_map_name(self) -> Il2CppString
fn get_map_name(self) -> Il2CppString
get_MapName() overload
Sourcefn set_map_name(self, value: impl Into<Il2CppString>)
fn set_map_name(self, value: impl Into<Il2CppString>)
set_MapName(::unity::Il2CppString) overload
Sourcefn get_map_degree(self) -> i32
fn get_map_degree(self) -> i32
get_MapDegree() overload
Sourcefn set_map_degree(self, value: impl Into<i32>)
fn set_map_degree(self, value: impl Into<i32>)
set_MapDegree(i32) overload
Sourcefn get_light_degree(self) -> i32
fn get_light_degree(self) -> i32
get_LightDegree() overload
Sourcefn set_light_degree(self, value: impl Into<i32>)
fn set_light_degree(self, value: impl Into<i32>)
set_LightDegree(i32) overload
Sourcefn get_end_disp_time(self) -> f32
fn get_end_disp_time(self) -> f32
get_EndDispTime() overload
Sourcefn set_end_disp_time(self, value: impl Into<f32>)
fn set_end_disp_time(self, value: impl Into<f32>)
set_EndDispTime(f32) 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: ILaterTalkSetter_UnitData> ILaterTalkSetter_UnitDataMethods for __T
Available on crate feature
app-latertalksetter only.