?? goal_gotonode.h
字號:
class PathNode;
class TAI;
class Goal_GotoNode : public Goal, public GoalQueue
{
public:
Goal_GotoNode( AI* pAI, const PathNode *destination,
bool bForceDirectPath = false );
virtual ~Goal_GotoNode();
// Update the goal
virtual void Update( float secs_elapsed );
virtual bool Success();
virtual bool ReplanSubgoals();
const PathNode* GetDestinationNode() { return node; }
protected:
bool active;
float stuckTimer;
const PathNode *node;
bool directPath;
};
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -