pub struct CustomRuleBuilder { /* private fields */ }Expand description
Builder for creating custom rules with dynamic parameters.
Use Rule::custom_dynamic or Rule::neighbor_custom_dynamic to create.
Implementations§
Source§impl CustomRuleBuilder
impl CustomRuleBuilder
Sourcepub fn with_param<V: Into<UniformValue>>(self, name: &str, value: V) -> Self
pub fn with_param<V: Into<UniformValue>>(self, name: &str, value: V) -> Self
Add a parameter that can be edited at runtime.
The parameter will be accessible in WGSL as uniforms.rule_N_name
where N is the rule index.
§Supported Types
f32- Single floatu32,i32- IntegersVec2,Vec3,Vec4- Vectors
§Example
ⓘ
Rule::custom_dynamic("p.velocity.y += uniforms.strength;")
.with_param("strength", 2.0)Sourcepub fn with_radius(self, radius: f32) -> Self
pub fn with_radius(self, radius: f32) -> Self
Set the collision radius (only for collision rules).
Trait Implementations§
Source§impl Clone for CustomRuleBuilder
impl Clone for CustomRuleBuilder
Source§fn clone(&self) -> CustomRuleBuilder
fn clone(&self) -> CustomRuleBuilder
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CustomRuleBuilder
impl Debug for CustomRuleBuilder
Source§impl From<CustomRuleBuilder> for Rule
impl From<CustomRuleBuilder> for Rule
Source§fn from(builder: CustomRuleBuilder) -> Self
fn from(builder: CustomRuleBuilder) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CustomRuleBuilder
impl RefUnwindSafe for CustomRuleBuilder
impl Send for CustomRuleBuilder
impl Sync for CustomRuleBuilder
impl Unpin for CustomRuleBuilder
impl UnwindSafe for CustomRuleBuilder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.