- Learning Game AI Programming with Lua
- David Young
- 258字
- 2021-08-05 17:02:14
Physics
Even though agents are simulated with physics, not all of the agent's physics parameters are enforced at the physics simulation level. The mass of an agent, for example, is the identical mass used within the physics simulation itself, while the MaxForce
and MaxSpeed
functions of an agent are only enforced by the agent. These two properties represent the maximum amount of force an agent can exert on itself and the max speed the agent can reach without any outside influences.
An intuitive example of why this separation is desirable when dealing with agent physics is gravity. When an agent accelerates to its max speed, we still want gravity to accelerate the agents downward in the case of falls. This acceleration can force agents to have a speed larger than their max speed property.
Mass
To access and modify the mass of our agents we can use the agent's GetMass
and SetMass
helper functions.
local mass = agent:GetMass(); agent:SetMass(mass);
The max force
The maximum force of our agents can be accessed and set using the GetMaxForce
and SetMaxForce
functions.
local maxForce = agent:GetMaxForce(); agent:SetMaxForce(maxForce);
The max speed
To set and access the max speed property of our agents, we can use the GetMaxSpeed
and SetMaxSpeed
functions.
local maxSpeed = agent:GetMaxSpeed(); agent:SetMaxSpeed(maxSpeed);
Speed
Setting and accessing the speed of our agents can be done through the GetSpeed
and SetSpeed
functions.
local speed = agent:GetSpeed(); agent:SetSpeed(speed);
Velocity
Similarly, to access and set the velocity of our agents, we can use the GetVelocity
and SetVelocity
functions.
local velocityVector = agent:GetVelocity(); agent:SetVelocity(velocityVector);
- MySQL高可用解決方案:從主從復制到InnoDB Cluster架構
- 大數據技術基礎
- 企業數字化創新引擎:企業級PaaS平臺HZERO
- 算法競賽入門經典:習題與解答
- SQL Server入門經典
- Modern Programming: Object Oriented Programming and Best Practices
- 卷積神經網絡的Python實現
- UDK iOS Game Development Beginner's Guide
- 數據驅動設計:A/B測試提升用戶體驗
- 智能數據分析:入門、實戰與平臺構建
- Proxmox VE超融合集群實踐真傳
- 數據中心數字孿生應用實踐
- Augmented Reality using Appcelerator Titanium Starter
- 改進的群智能算法及其應用
- 數據應用工程:方法論與實踐