Skip to main content

Questions tagged [behavior]

Behavior is the set of actions taken by an agent based upon its decision making system. Behavior is the applied result of the AI directing an agent. Questions on behavior should focus on actual or desired results of AI

0 votes
1 answer
195 views

I am reading Programming Game AI by Example. It shows a technique called Goal Based Agent Behavior, which seems very similar to GOAP. Are these the same, or there are key differences of which I should ...
videogamechef's user avatar
1 vote
1 answer
158 views

I'm still learning about Behaviour Trees and my understanding of the "blackboard" is essentially a state object. When passing the state object through the ticks to the function calls (which ...
xenon's user avatar
  • 437
0 votes
0 answers
601 views

I'm curious about when behavior trees first appeared in the context of AI design. I've looked at many sources (e.g., GDC talks, academic literature such as Behavior Trees in Robotics and AI: An ...
Reign of Error's user avatar
1 vote
1 answer
285 views

I’ve noticed in a lot 2D shmups, after enemies accelerate onto screen and arrive at their arrival point, they don’t simply sit static at their arrival position, but rather begin to gently move in ...
DyingIsFun's user avatar
  • 1,337
1 vote
2 answers
733 views

I'm making a simple behavior pack for Minecraft's Bedrock Edition for my own experimenting - the aim is to get tamed wolves to play fetch. The behavior pack is valid and loading, as it sort of works, ...
p0lar_bear's user avatar
1 vote
3 answers
444 views

I'm currently trying to develop a "Taxi-Driver" AI that intentionally makes sub-optimal pathing decisions. I need to have my driver go from point A to point B using a sub-optimal but still logical ...
Applekini's user avatar
  • 8,543
0 votes
1 answer
1k views

Finite State Machines are a great tool for simplifying a system where an Entity has many states it can be in with different conditions that determine what state to transition to. This works well for ...
Scooter's user avatar
  • 143
2 votes
1 answer
105 views

I'm writing a small game to sharpen my programming skills, and I've chosen to use behaviors (that basically is a class that modifies its parent, to do things like movement, damage and stuff) to avoid ...
jred_kai's user avatar
2 votes
1 answer
2k views

Example tree (Source): As far as I understood, a sequencer iterates over the children until one failed or all are successful. If one children returns "running", the sequencer will start to process ...
Superwayne's user avatar
6 votes
3 answers
6k views

I'm reading up on Behavior Trees and would like to know how a good implementation for a scenario where the conditions can change or where a selector with a higher priority interrupts the current one. ...
Mattias's user avatar
  • 750
2 votes
1 answer
2k views

I'm making a platformer that wants the screen to closely follow the player, and I know I need the Scroll TO behavior. However, when I tried to make the screen move to the player, I get this: As seen ...
user avatar
1 vote
1 answer
145 views

In Starcraft 2, unit formations are created when a "group" is generated from a command. Generally, the rules for a group are: All units in the group are in the same spatial "clump". All units in the ...
JPtheK9's user avatar
  • 2,031
7 votes
2 answers
4k views

I'm writing a bot for a MOBA game as final project. Game status is read directly from the screen (that's the requirement). Now I have come to the AI part. On the first steps it started as some basic ...
user3352250's user avatar
4 votes
2 answers
4k views

I've studied several articles and listen some talks about behavior trees (mostly the resources available on AIGameDev by Alex J. Champandard). I'm particularly interested on event driven behavior ...
Heisenbug's user avatar
  • 2,154
2 votes
2 answers
1k views

So I've been on a team that has been working on a game for quite a few months now and we're hitting some really nasty bloat problems with our character actions. Question in bold. Accompanying ...
steve's user avatar
  • 220

15 30 50 per page