mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-22 17:07:20 +01:00
28 lines
520 B
C++
28 lines
520 B
C++
#ifndef GSAI_COHESION_H
|
|
#define GSAI_COHESION_H
|
|
|
|
#include "core/object/reference.h"
|
|
|
|
#include "../gsai_group_behavior.h"
|
|
|
|
class GSAITargetAcceleration;
|
|
class GSAISteeringAgent;
|
|
|
|
class GSAICohesion : public GSAIGroupBehavior {
|
|
GDCLASS(GSAICohesion, GSAIGroupBehavior);
|
|
|
|
public:
|
|
void _calculate_steering(Ref<GSAITargetAcceleration> acceleration);
|
|
bool _report_neighbor(Ref<GSAISteeringAgent> neighbor);
|
|
|
|
GSAICohesion();
|
|
~GSAICohesion();
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
Vector3 _center_of_mass;
|
|
};
|
|
|
|
#endif
|