A* Pathfinding Project
4.1.7
The A* Pathfinding Project for Unity 3D
|
Helper for navmesh cut objects. More...
Helper for navmesh cut objects.
Adding an instance of this component into the scene makes sure that NavmeshCut components update the recast graph correctly when they move around.
Public Member Functions | |
void | DiscardPending () |
Discards all pending updates caused by moved or modified navmesh cuts. More... | |
void | ForceUpdate () |
Checks all NavmeshCut instances and updates graphs if needed. More... | |
void | UseSpecifiedHandler (TileHandler newHandler) |
Use the specified handler, will create one at start if not called. More... | |
Public Attributes | |
float | updateInterval |
How often to check if an update needs to be done (real seconds between checks). More... | |
Private Member Functions | |
void | FindGraph () |
void | HandleOnDisableCallback (NavmeshClipper obj) |
Called when a NavmeshCut or NavmeshAdd is disabled. More... | |
void | HandleOnEnableCallback (NavmeshClipper obj) |
Called when a NavmeshCut or NavmeshAdd is enabled. More... | |
void | OnDisable () |
void | OnEnable () |
void | OnRecalculatedTiles (NavmeshTile[] tiles) |
Called when some recast graph tiles have been completely recalculated. More... | |
void | Start () |
void | Update () |
Update is called once per frame. More... | |
Private Attributes | |
readonly List< IntRect > | forcedReloadRects = new List<IntRect>() |
TileHandler | handler |
float | lastUpdateTime = float.NegativeInfinity |
Additional Inherited Members | |
Protected Member Functions inherited from VersionedMonoBehaviour | |
virtual void | Awake () |
virtual int | OnUpgradeSerializedData (int version, bool unityThread) |
Handle serialization backwards compatibility. More... | |
void DiscardPending | ( | ) |
Discards all pending updates caused by moved or modified navmesh cuts.
|
private |
void ForceUpdate | ( | ) |
Checks all NavmeshCut instances and updates graphs if needed.
|
private |
Called when a NavmeshCut or NavmeshAdd is disabled.
|
private |
Called when a NavmeshCut or NavmeshAdd is enabled.
|
private |
|
private |
|
private |
Called when some recast graph tiles have been completely recalculated.
|
private |
|
private |
Update is called once per frame.
void UseSpecifiedHandler | ( | TileHandler | newHandler | ) |
Use the specified handler, will create one at start if not called.
|
private |
|
private |
float updateInterval |
How often to check if an update needs to be done (real seconds between checks).
For very large worlds with lots of NavmeshCut objects, it might be a performance penalty to do this check every frame. If you think this is a performance penalty, increase this number to check less often.
For almost all games, this can be kept at 0.
If negative, no updates will be done. They must be manually triggered using ForceUpdate