- Unity 2017 Game AI Programming(Third Edition)
- Ray Barrera Aung Sithu Kyaw Thet Naing Swe
- 140字
- 2021-07-02 19:14:12
IDA* Pathfinding
IDA* star stands for iterative deepening A*. It is a depth-first permutation of A* with a lower overall memory cost, but is generally considered costlier in terms of time. Whereas A* keeps multiple nodes in memory at a time, IDA* does not since it is a depth-first search. For this reason, IDA* may visit the same node multiple times, leading to a higher time cost. Either solution will give you the shortest path between two nodes.
In instances where the graph is too big for A* in terms of memory, IDA* is preferable, but it is generally accepted that A* is good enough for most use cases in games. That said, we'll explore both solutions in Chapter 4, Finding Your Way, so you can arrive at your own conclusion and pick the right pathfinding algorithm for your game.
- Advanced Splunk
- Spring 5.0 By Example
- React Native Cookbook
- 深入理解Elasticsearch(原書第3版)
- Python 3 數(shù)據(jù)分析與機(jī)器學(xué)習(xí)實(shí)戰(zhàn)
- Learning Jakarta Struts 1.2: a concise and practical tutorial
- R的極客理想:量化投資篇
- LabVIEW數(shù)據(jù)采集
- CryENGINE Game Programming with C++,C#,and Lua
- 循序漸進(jìn)Vue.js 3前端開(kāi)發(fā)實(shí)戰(zhàn)
- Mastering VMware vSphere Storage
- Practical Linux Security Cookbook
- R High Performance Programming
- Ajax與jQuery程序設(shè)計(jì)
- ASP.NET開(kāi)發(fā)技巧精講