On this page |
Overview ¶
Houdini has many useful POP forces that you could use as behavior nodes to control the movement of the underlying particles that the agents are attached to. These “steering force” nodes are essentially particle forces with the added concept of weights, and they provide useful crowd behaviors such as “move toward a point” or “follow a path”. At any given moment, an agent could be affected by multiple forces (for example, both “follow this path” and “avoid obstacles”). The crowd solver deals with multiple forces by normalizing the weights (scaling them so they add up to 1), and then multiplying the individual forces by the normalized weights.
Along with the crowd steering force nodes, there are also default forces on the crowd solver that have the concept of weights.
Example ¶
Consider an agent with the following forces applied to it at a given moment:
Force type |
Force amount |
Weight |
---|---|---|
Avoid |
10 |
1.0 |
Follow path |
1 |
0.5 |
Align |
2 |
0.2 |
The crowd solver uses weights to deal with multiple forces that are present on an agent:
-
The crowd solver normalizes the weights so they add up to 1:
-
Avoid weight: 0.59
-
Follow path weight: 0.29
-
Align weight: 0.12
-
-
The solver then multiplies the force amounts by the normalized weights:
-
Avoid force: 10
*
0.59 = 5.9 -
Follow path force: 1
*
0.29 = 0.29 -
Align force: 2
*
0.2 = 0.4
-
-
Finally, the solver adds the forces to get the overall force on the agent.
Using weights ¶
All the forces in the agent’s current state, and any forces that apply to all agents regardless of their state, are applied to the agent. It is not possible to have a behavior that completely overrides any other behavior. However, you can use a very high weight for a particular force (for example, 10
), so that when other forces are normalized, they are made unnoticeably small.
Particle forces ¶
You can use regular particle force nodes and other DOPs inside a state to define behavior, not just crowd-specific “steering” nodes. However, non-crowd-specific nodes don’t have Weight parameters, so they will not be subject to the normalization described above. Instead they will simply be added on to any other forces on the agents.