pub trait IProportionParametersMethods: IProportionParameters {
Show 13 methods
// Provided methods
fn import_leg_scale_params_from_model(self, root: impl Into<Transform>) { ... }
fn ctor(self) { ... }
fn ctor_2(self, rhs: impl Into<ProportionParameters>) { ... }
fn reset_to_one(self) { ... }
fn get_clipboard_formed_string(self) -> Il2CppString { ... }
fn random(self) { ... }
fn get_is_valid(self) -> bool { ... }
fn copy_from(self, rhs: impl Into<ProportionParameters>) { ... }
fn import_from_asset_result(self, r: impl Into<AssetTable_Result>) { ... }
fn dump_to_string(self) -> Il2CppString { ... }
fn dump_to_short_string(self) -> Il2CppString { ... }
fn calculate(self, j: impl Into<CharacterJoint>) { ... }
fn flush(self) { ... }
}Provided Methods§
Sourcefn import_leg_scale_params_from_model(self, root: impl Into<Transform>)
fn import_leg_scale_params_from_model(self, root: impl Into<Transform>)
ImportLegScaleParamsFromModel(crate::unity_engine::transform::Transform) overload
Sourcefn ctor_2(self, rhs: impl Into<ProportionParameters>)
fn ctor_2(self, rhs: impl Into<ProportionParameters>)
.ctor(crate::combat::proportionparameters::ProportionParameters) overload
Sourcefn reset_to_one(self)
fn reset_to_one(self)
ResetToOne() overload
Sourcefn get_clipboard_formed_string(self) -> Il2CppString
fn get_clipboard_formed_string(self) -> Il2CppString
GetClipboardFormedString() overload
Sourcefn get_is_valid(self) -> bool
fn get_is_valid(self) -> bool
get_IsValid() overload
Sourcefn copy_from(self, rhs: impl Into<ProportionParameters>)
fn copy_from(self, rhs: impl Into<ProportionParameters>)
CopyFrom(crate::combat::proportionparameters::ProportionParameters) overload
Sourcefn import_from_asset_result(self, r: impl Into<AssetTable_Result>)
fn import_from_asset_result(self, r: impl Into<AssetTable_Result>)
ImportFromAssetResult(crate::app::assettable::AssetTable_Result) overload
Sourcefn dump_to_string(self) -> Il2CppString
fn dump_to_string(self) -> Il2CppString
DumpToString() overload
Sourcefn dump_to_short_string(self) -> Il2CppString
fn dump_to_short_string(self) -> Il2CppString
DumpToShortString() overload
Sourcefn calculate(self, j: impl Into<CharacterJoint>)
fn calculate(self, j: impl Into<CharacterJoint>)
Calculate(crate::combat::characterjoint::CharacterJoint) 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: IProportionParameters> IProportionParametersMethods for __T
Available on crate feature
combat-proportionparameters only.