limboai/bt/tasks/blackboard/bt_check_trigger.h

39 lines
982 B
C
Raw Normal View History

2023-08-09 08:33:04 +00:00
/**
* bt_check_trigger.h
* =============================================================================
* Copyright 2021-2023 Serhii Snitsaruk
*
* Use of this source code is governed by an MIT-style
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/MIT.
* =============================================================================
*/
#ifndef BT_CHECK_TRIGGER_H
#define BT_CHECK_TRIGGER_H
2023-08-15 15:49:13 +00:00
#include "../bt_condition.h"
2023-08-09 08:33:04 +00:00
#include "core/string/ustring.h"
class BTCheckTrigger : public BTCondition {
GDCLASS(BTCheckTrigger, BTCondition);
2023-08-28 11:22:23 +00:00
TASK_CATEGORY(Blackboard);
2023-08-09 08:33:04 +00:00
private:
String variable;
protected:
static void _bind_methods();
virtual String _generate_name() const override;
virtual int _tick(double p_delta) override;
public:
void set_variable(String p_variable);
String get_variable() const { return variable; }
virtual PackedStringArray get_configuration_warnings() const override;
2023-08-09 08:33:04 +00:00
};
#endif // BT_CHECK_TRIGGER