Content Creators
Development workflow

Development workflow

This document outlines the steps recommended for developing a scene for Decentraland, from ideation to publishing and beyond.

Install the Decentraland Editor #

Make sure you have the Decentraland Editor installed.

Design your experience #

Think about how much space you need to take up, what kind of distribution, what kinds of mechanics you want players to be able to carry out, etc. The following documents can serve as a guide:

Where to publish #

In Decentraland, content is published to adjacent plots of land in a finit amount of space. Players can freely walk from one to the other. Each scene is its own contained little world, items from one scene can’t extend out into another scene, and the code for each scene is sandboxed from all others.

Permission to publish to each of these is controlled via tokens. You don’t need land to develop a scene, but you will need access to land once you’re ready to publish. Alternatively, you have the option to publish to Decentraland Worlds , which are self-contained and isolated scenes.

The following options are available:

See Publishing options for more details.

Templates and examples #

When creating a new scene, choose amongst several base template scenes that include some basic code and 3d models. Use these to get started faster.

  • Awesome repository : here you can find a large collection of example scenes, each showcasing different mechanics that you can borrow. You can also clone any of these scenes and use it as a starting point.
  • Helper libraries : these can simplify many common tasks.

Art assets #

If you’re an experienced artist or you have access to someone who is, you can create custom .gltf or .glb models for your scene. See 3D model essentials for tips on how to create 3D models for Decentraland.

There are many sources to obtain free or paid art assets. For example:

Run a local preview #

To run a preview of your scene, open a Visual Studio Code window on your project’s root folder and click the Preview button on the Decentraland Editor tab.

💡 Tip: If you get stuck trying to debug an issue, visit the Decentraland Discord server to get help from other developers.

Optional: Your scene`s mechanics might rely on a 3rd party server to carry out player validations, permanent data storage, or other functionalities. See Use an authoritative server

Publish to the test server #

Deploy your scene to a test server. This server is not private but only accessible via a specific URL, so players won’t bump into what you publish there.

Publish to Decentraland #

Once you’re happy with your scene, it’s time to publish it to the production environment. There all players will have access to it if they visit the scene’s coordinates.

📔 Note: Before you do, check that your scene has all the necessary metadata: name, description, a preview image, spawn points. See scene metadata for details.

Promote #

Once your scene is out there, you want to give it visibility and have people visit it. There are a number of ways you can shine a spotlight on it:

  • Share it on social media
  • Events page : create an event to promote your scene
  • Places page : ensure your scene is well positoned here, encourage players to vote your scene to get more visibility

Iterate #

One great advantage of Decentraland is that you can easily iterate over your scenes. Measure your scene’s success with players, then keep publishing changes as you perfect the experience for your players.

Giving back #

Decentraland is a community project, the community of creators learns together and leverage each other’s creations. Consider the following:

  • Join the Decentraland Discord server and help other developers in need of advice.
  • Share your scene’s code as an open source repo on GitHub.
  • Build a minimal example to share a specific reusable mechanic, as an open source repo on GitHub.
  • Make a PR to the Awesome Repository to include your scenes.
  • Write a library that encapsulates the complexity of common challenges, so others can overcome them easily.