mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-21 11:26:53 +01:00
27 lines
710 B
C++
27 lines
710 B
C++
#ifndef GSAIINFINITEPROXIMITY_H
|
|
#define GSAIINFINITEPROXIMITY_H
|
|
|
|
class GSAIInfiniteProximity : public GSAIProximity {
|
|
GDCLASS(GSAIInfiniteProximity, GSAIProximity);
|
|
|
|
public:
|
|
int _find_neighbors(const FuncRef &callback);
|
|
|
|
GSAIInfiniteProximity();
|
|
~GSAIInfiniteProximity();
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
// Determines any agent that is in the specified list as being neighbors with the
|
|
// owner agent, regardless of distance.
|
|
// @category - Proximities
|
|
// Returns a number of neighbors based on a `callback` function.
|
|
//
|
|
// `_find_neighbors` calls `callback` for each agent in the `agents` array and
|
|
// adds one to the count if its `callback` returns true.
|
|
// @tags - virtual
|
|
};
|
|
|
|
#endif
|