pub struct UtilityActionDef {
pub name: String,
pub considerations: Vec<Consideration>,
pub combine: ConsiderationCombine,
pub cooldown: f32,
pub max_duration: f32,
/* private fields */
}Expand description
An action defined by its considerations and execution function.
Fields§
§name: String§considerations: Vec<Consideration>§combine: ConsiderationCombineHow to combine multiple consideration scores.
cooldown: f32Cooldown timer.
max_duration: f32Implementations§
Source§impl UtilityActionDef
impl UtilityActionDef
pub fn new( name: &str, considerations: Vec<Consideration>, execute_fn: impl Fn(&mut Blackboard, f32) -> bool + Send + Sync + 'static, ) -> Self
pub fn with_cooldown(self, c: f32) -> Self
pub fn with_max_duration(self, d: f32) -> Self
pub fn with_combine(self, c: ConsiderationCombine) -> Self
Trait Implementations§
Source§impl UtilityAction for UtilityActionDef
impl UtilityAction for UtilityActionDef
Auto Trait Implementations§
impl Freeze for UtilityActionDef
impl !RefUnwindSafe for UtilityActionDef
impl Send for UtilityActionDef
impl Sync for UtilityActionDef
impl Unpin for UtilityActionDef
impl UnsafeUnpin for UtilityActionDef
impl !UnwindSafe for UtilityActionDef
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> 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.