mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-20 19:06:53 +01:00
27 lines
575 B
C++
27 lines
575 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);
|
|
virtual void _face(Ref<GSAITargetAcceleration> acceleration, Vector3 target_position);
|
|
|
|
void _calculate_steering(Ref<GSAITargetAcceleration> acceleration);
|
|
|
|
GSAIFace();
|
|
~GSAIFace();
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
};
|
|
|
|
#endif
|