mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-21 03:16:54 +01:00
31 lines
764 B
C++
31 lines
764 B
C++
#ifndef GSAI_FACE_H
|
|
#define GSAI_FACE_H
|
|
|
|
#include "core/object/reference.h"
|
|
|
|
#include "gsai_match_orientation.h"
|
|
|
|
class GSAITargetAcceleration;
|
|
|
|
class GSAIFace : public GSAIMatchOrientation {
|
|
GDCLASS(GSAIFace, GSAIMatchOrientation);
|
|
|
|
public:
|
|
void face(const Ref<GSAITargetAcceleration> &acceleration, const Vector3 &target_position);
|
|
void _face(Ref<GSAITargetAcceleration> acceleration, Vector3 target_position);
|
|
|
|
void _calculate_steering(Ref<GSAITargetAcceleration> acceleration);
|
|
|
|
GSAIFace();
|
|
~GSAIFace();
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
// Calculates angular acceleration to rotate a target to face its target's
|
|
// position. The behavior attemps to arrive with zero remaining angular velocity.
|
|
// @category - Individual behaviors
|
|
};
|
|
|
|
#endif
|