November 1, 2023
If you encounter any bugs or issues with the Decentraland SDK and the Scene Editor, please report them on our GitHub repository here .
Before you report a bug # Before submitting a bug report, please ensure the following:
Ensure you’re using the latest version of the SDK, in case the issue has already been fixed in newer releases. Check the documentation for the feature you’re trying to use, to confirm that it’s supposed to behave as you’re expecting, and that this is not just a misunderstanding.
...
October 28, 2022
uiBackground # A uiBackground component gives color or a texture an entity’s area. It uses the size and position defined by the entity’s uiTransform.
The following fields can be configured, all of them are optional:
color: The color to use on the entity, as a Color4 value. đź’ˇ Tip: Make an entity semi-transparent by setting the 4th value of the Color4 to less than 1. texture: The texture to display on the entity, this takes an object with various parameters about the texture.
...
July 19, 2022
Portable experiences are essentially scenes that are not constrained to parcels of land. Players can carry these with them anywhere they go in Decentraland, adding a new layer of content over their experience. Portable Experiences can be tied to a NAME and can be loaded by another scene using the SDK.
đź“” Note: Portable experiences can only be created using SDK 7. Also, only scenes built with SDK 7 are capable of loading a portable experience.
...
February 2, 2022
Smart wearables are a type of global scene. Like portable experiences , they are gameplay that players take with them as they move through the metaverse. For example, while running a global scene, a player could take a snowball from the ground in Genesis Plaza, walk away to another scene, and throw the snowball to another player who’s also playing the same game.
Smart wearables are portable experiences that are turned on when the player puts on a certain item of clothing.
...
November 20, 2020
âť—Warning: This is a legacy page covering functionality with the old SDK version 6. See the latest version of this topic here . To make a player perform an emote, use the triggerEmote() function. Note that only existing default emotes are supported for now. This function takes a single argument:
emote: An emote from the PredefinedEmote enum. import { triggerEmote, PredefinedEmote } from '@decentraland/RestrictedActions' const emoter = new Entity() emoter.
...
November 20, 2020
You can make the player perform an animation as part of the scene’s code. This can help provide more immersion, and it can also help communicate what other players are doing to each other. The avatar animations are seen both by the player (in 3rd person view) and any other players around.
Animations done by the player are overridden by the default locomotion animations, like walking and jumping. So animations played by the scene only play while the player is standing still.
...
February 10, 2018
âť—Warning: This is a legacy page covering functionality with the old SDK version 6. See the latest version of this topic here . Sound is a great way to provide feedback to player actions and events, background sounds can also give your scene more context and improve the player’s immersion into it.
đź“” Note: Keep in mind that sounds are only heard by players who are standing within the parcels that make up the scene where the sound was generated, even if they would otherwise be in hearing range.
...
February 10, 2018
Sound is a great way to provide feedback to player actions and events, background sounds can also give your scene more context and improve the player’s immersion into it.
đź“” Note: Keep in mind that sounds are only heard by players who are standing within the parcels that make up the scene where the sound was generated, even if they would otherwise be in hearing range. Players can also chose to turn off all sounds on their settings.
...
January 1, 2018
âť—Warning: This is a legacy page covering functionality with the old SDK version 6. See the latest version of this topic here . Once you have built a new scene or downloaded a scene example you can preview it locally.
##Â Using the Scene Editor
Make sure you’ve installed the Creator Hub .
Open your scene project. Click the Preview button on the top-right corner. This will open a new window with the Decentraland Desktop Explorer, running just your scene.
...
January 1, 2018
Once you have built a new scene or downloaded a scene example you can preview it locally.
Using the Scene Editor # Make sure you’ve installed the Creator Hub .
Open your scene project. Click the Preview button on the top-right corner. This will open a new window with the Decentraland Desktop Explorer, running just your scene. There you can move around the scene and interact with interactive items. Using the CLI # To preview a scene run the following command on the scene’s main folder:
...