pub trait IEventDemoSequence_EffectWorkMethods: IEventDemoSequence_EffectWork {
// Provided methods
fn ctor(
self,
effect_path: impl Into<Il2CppString>,
parent_trans: impl Into<Transform>,
) { ... }
fn load_effect(
self,
effect_path: impl Into<Il2CppString>,
parent_trans: impl Into<Transform>,
) { ... }
fn delete_effect(self) { ... }
}Provided Methods§
Sourcefn ctor(
self,
effect_path: impl Into<Il2CppString>,
parent_trans: impl Into<Transform>,
)
fn ctor( self, effect_path: impl Into<Il2CppString>, parent_trans: impl Into<Transform>, )
.ctor(::unity::Il2CppString, crate::unity_engine::transform::Transform) overload
Sourcefn load_effect(
self,
effect_path: impl Into<Il2CppString>,
parent_trans: impl Into<Transform>,
)
fn load_effect( self, effect_path: impl Into<Il2CppString>, parent_trans: impl Into<Transform>, )
LoadEffect(::unity::Il2CppString, crate::unity_engine::transform::Transform) overload
Sourcefn delete_effect(self)
fn delete_effect(self)
DeleteEffect() 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: IEventDemoSequence_EffectWork> IEventDemoSequence_EffectWorkMethods for __T
Available on crate feature
app-eventdemosequence only.