Contributors
Execution

Execution

The runtime treats scenes like typical Node modules. Once the sandbox is set up (i.e. all globals are injected and modules are ready to be loaded), the code of the scene will be evaluated so it can populate the exports object.

Two methods will be picked up by the host from exports: onStart (optional) and onUpdate (mandatory).

type Exports = {
  onStart?: () => Promise<void>
  onUpdate: (deltaSeconds: number) => Promise<void>
}

During the life-cycle of a scene, the runtime will ensure that calls to these methods are never made concurrently. The returned Promise will always be awaited before the scene receives a new call.

o n S t a r t a w a i t o n U p d a t e a w a i t

Effective and performant synchronization between individual scenes and the game rendering engine is a complicated matter. You can find lessons from the Foundation’s implementation in ADR-148 .

onStart #

The life-cycle of a scene begins with the asynchronous onStart method. It’s the place to make one-time initializations that must complete before the first call to onUpdate is made.

onStart(): Promise<void>

Scenes should use this call to request any pre-existing state from the runtime (such as the basic entities ) and perform their own initial setup.

Exporting onStart is recommended for all scenes (and done automatically when using the SDK), but it’s not required by protocol. The method may be missing, or return an immediately resolved Promise.

onUpdate #

While a scene is actively running, the asynchronous onUpdate method will be periodically invoked by the runtime to report the passage of time. This is the heart of the scene: in each successive call, entities can be updated, input processed, animations played, messages sent, UI displayed, etc.

onUpdate(deltaSeconds: number): Promise<void>

The deltaSeconds parameter is the fractional number of seconds elapsed since the last call to onUpdate was initiated by the runtime (regardless of when the returned Promise was settled). This is specific to each running scene.

Since onUpdate calls will never overlap, the sequence of deltaSeconds produces a coherent timeline.

In ideal circumstances, scenes get a chance to run onUpdate before each frame is rendered. However, depending on available resources, scenes running a heavy workload may not settle their Promise in time for the next frame. Each scene is independent in this respect: lightweight implementations of onUpdate may be invoked multiple times in the same period as a single, time-consuming call in another scene.

See ADR-148 for details.

Running Multiple Scenes #

The World Explorer must not only support running several sandboxed scenes, it should be doing so at all times. There’s two reasons for this:

First, when players explore the world, their sight reaches beyond the geographical limits of the scene they are standing on. Nearby scenes (up to an arbitrary or configurable distance) must be running to generate the content players should be able to see.

Second, scenes don’t just run inside their own, non-overlapping boundaries. They can also be layered on top of each other, affecting the area around the player but providing different functionality.

This is the case for two kinds of scenes in particular: the avatar scene, and portable experiences.

The Avatar Scene #

From the moment the player enters the world, a global scene tasked with rendering the avatars of other players starts running.

This scene is not limited by geographical boundaries, and can display its entities (as well as UI widgets for communication) regardless of the player’s location.

Portable Experiences #

Decentraland allows wearables to have their own behavior, which runs in its own scene context. These scenes are centered around the player, and can enrich the experience by adding entities or showing UI widgets.

They start running when the wearable is equipped, and stop when it’s removed.