- Learning Game AI Programming with Lua
- David Young
- 186字
- 2021-08-05 17:02:15
Group steering
Group steering can be broken down into three main steering behaviors: alignment, cohesion, and separation. An alignment steering force has the agent's face in the same forward direction as the rest of the agents in the group. Cohesion is a force that keeps the agents within the group together. Separation is the opposite of cohesion and forces the agents within the group to keep minimum distance from one another.
Using a combination of these three steering behaviors, which are also known as flocking, you can create groups of agents that are driven to move together yet not run into each other.
Alignment
To calculate a steering vector that will align our agent to a group of other agents, we can use the ForceToSeparate
function.
local forceToAlign = agent:ForceToSeparate(maxDistance, maxAngle, agents);
Cohesion
To keep our agent together with a group of other agents, we can calculate a steering force for combining using the ForceToCombine
function.
local forceToCombine = agent:ForceToCombine(maxDistance, maxAngle, agents);
Separation
To keep our agent apart from a group of other agents, we can use the ForceToSeparate
function.
local forceToSeparate = agent:forceToSeparate(minDistance, maxAngle, agents);
- 數(shù)據(jù)浪潮
- Spark快速大數(shù)據(jù)分析(第2版)
- Oracle PL/SQL實(shí)例精解(原書第5版)
- PostgreSQL指南:內(nèi)幕探索
- SQL Server 2012數(shù)據(jù)庫管理教程
- Unreal Engine Virtual Reality Quick Start Guide
- Web Services Testing with soapUI
- MySQL數(shù)據(jù)庫技術(shù)與應(yīng)用
- Gideros Mobile Game Development
- The Natural Language Processing Workshop
- Access 2010數(shù)據(jù)庫程序設(shè)計(jì)實(shí)踐教程
- 改進(jìn)的群智能算法及其應(yīng)用
- 云原生架構(gòu):從技術(shù)演進(jìn)到最佳實(shí)踐
- 算力芯片:高性能CPU/GPU/NPU微架構(gòu)分析
- 大數(shù)據(jù)SQL優(yōu)化:原理與實(shí)踐