このページは編集中です。更新が保留になっている可能性があります。

Using Navmesh Agents

To use a navmesh agent the QuantumNavMeshAgent component has to be added to a DeterministicActor.

The agent provides a simple api which can be used to control it.

c++

    void SetMaxWaypoints(int maxWaypoints); 
    void SetTarget(const FCVector3& targetPosition);
    void SetSpeed(FCReal speed);
    void Stop();
Back to top