Trait EffectBuilder
pub trait EffectBuilder {
type Handle;
// Required method
fn build(self) -> (Box<dyn Effect>, Self::Handle) ⓘ;
}
Available on crate feature
dep_kira
only.Expand description
Configures an effect.
Required Associated Types§
type Handle
type Handle
Allows the user to control the effect from gameplay code.