Skip to content

Commit

Permalink
Site changes [skip-ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
defold-services committed Feb 3, 2025
1 parent c18857b commit 2349e55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manuals/application-lifecycle.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ If a [fixed timestep is used for physics simulation](/manuals/physics/#physics-u
The order in which game object component `update()` functions are called is unspecified. You should not assume that the engine updates objects belonging to the same collection in a certain order.
</div>

In the next step all posted messages are dispatched. Since any receiver components’ `on_message()` code can post additional messages the message dispatcher will continue to dispatch posted messaged until the message queue is empty. There is, however, a limit to how many runs through the message queue the message dispatcher performs. See [Message passing](/manuals/message-passing) and the section "Advanced topics" for details.
In the next step all posted messages are dispatched. Since any receiver components’ `on_message()` code can post additional messages the message dispatcher will continue to dispatch posted messaged until the message queue is empty. There is, however, a limit to how many runs through the message queue the message dispatcher performs. See [Message Chains](/manuals/message-passing#message-chains) for details.

For collision object components, physics messages (collisions, triggers, ray_cast responses etc) are dispatched throughout the encompassing game object to all components that contain a script with an `on_message()` function.

Expand Down

0 comments on commit 2349e55

Please sign in to comment.