52 lines
1.3 KiB
C++
52 lines
1.3 KiB
C++
/**
|
|
* bt_pause_animation.h
|
|
* =============================================================================
|
|
* Copyright 2021-2024 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_PAUSE_ANIMATION_H
|
|
#define BT_PAUSE_ANIMATION_H
|
|
|
|
#include "../bt_action.h"
|
|
|
|
#include "../../../blackboard/bb_param/bb_node.h"
|
|
|
|
#ifdef LIMBOAI_MODULE
|
|
#include "scene/animation/animation_player.h"
|
|
#endif
|
|
|
|
#ifdef LIMBOAI_GDEXTENSION
|
|
#include <godot_cpp/classes/animation_player.hpp>
|
|
#endif
|
|
|
|
class BTPauseAnimation : public BTAction {
|
|
GDCLASS(BTPauseAnimation, BTAction);
|
|
TASK_CATEGORY(Scene);
|
|
|
|
private:
|
|
Ref<BBNode> animation_player_param;
|
|
|
|
AnimationPlayer *animation_player = nullptr;
|
|
bool setup_failed = false;
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
virtual String _generate_name() override;
|
|
virtual void _setup() override;
|
|
virtual Status _tick(double p_delta) override;
|
|
|
|
public:
|
|
void set_animation_player(Ref<BBNode> p_animation_player);
|
|
Ref<BBNode> get_animation_player() const { return animation_player_param; }
|
|
|
|
virtual PackedStringArray get_configuration_warnings() override;
|
|
};
|
|
|
|
#endif // BT_PAUSE_ANIMATION
|