12-08-2013, 11:15 PM
Something xoft always says is to use a std::vector structure to speed up stuff. I see you have a:
in BehviourPathToPosition.h. Perhaps change it to:
..?
Code:
typedef std::deque<Vector3f> Path
in BehviourPathToPosition.h. Perhaps change it to:
Code:
typedef std::vector<Vector3f> Path
..?