feat: increased visibility of various getters in goap::State
This commit is contained in:
parent
dc60937660
commit
e71a27876d
|
@ -19,12 +19,12 @@ public:
|
||||||
virtual void _process(double) override;
|
virtual void _process(double) override;
|
||||||
void interrupt_state();
|
void interrupt_state();
|
||||||
void end_state();
|
void end_state();
|
||||||
protected:
|
|
||||||
Action const *get_action() const;
|
Action const *get_action() const;
|
||||||
//! \returns True if the Action's requirements are complete. Without evaluating Action::require_state_complete.
|
//! \returns True if the Action's requirements are complete. Without evaluating Action::require_state_complete.
|
||||||
bool is_action_done() const;
|
bool is_action_done() const;
|
||||||
//! \returns True if the Action's requirements are complete. Including Action::require_state_complete.
|
//! \returns True if the Action's requirements are complete. Including Action::require_state_complete.
|
||||||
bool is_action_done_interrupt() const;
|
bool is_action_done_interrupt() const;
|
||||||
|
protected:
|
||||||
virtual void _end_state();
|
virtual void _end_state();
|
||||||
private:
|
private:
|
||||||
ActorWorldState *world_state{nullptr};
|
ActorWorldState *world_state{nullptr};
|
||||||
|
|
Loading…
Reference in a new issue