Questions tagged [decentraland]
22 questions
3
votes
1 answer
Is it possible to access/downlad glb or gltf models from Decentraland?
I have created a dummy scene using dcl init & dcl start and imported a few models from one of their github repositories.
I created a small script which creates a scene, imports those models into the scene and console logs the list of models I…

Jacob Krieg
- 2,834
- 15
- 68
- 140
2
votes
0 answers
Setting Up a Poap Booth to Give Out tokens at a decentraland event
Hey I am tryng to create a poap-booth for my event on decentraland.
Using the following documentation I am linking the booth in the game.ts SDK to the poapHandler.ts
This would allow me to create a token to give out at events when connected to the…

Vincent Boardman
- 21
- 1
1
vote
0 answers
Clear or reset Decentraland's UIContainerRect
I created a custom UICreator class with the attribute lowerContainer that contains a button and I'm trying to remove it to put a new one, but the new button appears whithout remove the first one.
I tried to recreate the whole UI and also reset the…

franco
- 112
- 1
- 13
1
vote
0 answers
Decentraland project not starting properly
I am trying to run 'dcl start' command from the terminal. The Decentraland Preview webpage opens and terminal says 'Acquring comms connection'. But after that it gives the error below:
Oops, it seems the catalyst isn't working well. [HPM] Error…

Berke Tevik
- 11
- 1
1
vote
0 answers
dcl deploy : Build /scene in production mode failed
dcl deploy
secp256k1 unavailable, reverting to browser version
× Build /scene in production mode failed
Error: dcl deploy Error: Error while building the project, run "dcl help deploy" for more info.
I get this error whenever I run "dcl deploy".…

DUKE
- 11
- 1
1
vote
0 answers
can't install decentraland dependencies
I'm trying to set up a local project for decentraland on a Windows 10 machine and I'm facing some issues installing global decentraland dependencies. I found a related stackoverflow's question (npm install errors with Error: ENOENT, chmod) but it…

sbluff
- 52
- 8
1
vote
0 answers
Java Selenium Mouse movement in Decentraland
I'm trying to automate the process of moving in Decentraland (a metaverse https://decentraland.org/). After I automated the process of signing up and everything, I jump into the land but when using actions.moveToElement(element, x, y);, no error…

apinanyogaratnam
- 628
- 7
- 14
1
vote
3 answers
Delaying actions using Decentraland's ECS
How do I make an action occur with a delay, but after a timeout?
The setTimeout() function doesn’t work in Decentraland scenes, so is there an alternative?
For example, I want an entity to wait 300 milliseconds after it’s clicked before I remove it…

nicosantangelo
- 13,216
- 3
- 33
- 47
0
votes
1 answer
Work around NPM dependencies with fixed URL on company network
I have to make a Dockerfile to build my decentraland world in a docker container. This requires to install the dcl package on NPM, and to do this on our company network with our company mirror for npm.
The issue is that the decentraland package have…

Paul
- 1
- 1
0
votes
0 answers
Typescript - How to access a variable (bool) in another .ts file
I have a .ts file called Wallblock.ts which has a variable within a function -
export function CreateWalls(): void {
//VIP VARIABLE
var VIPPass: boolean = false; //Variable true if VIP item held
How would I access the state of this boolean in…
0
votes
0 answers
Decentraland - API get Profile data request
I'm looking to read my profile details from decentraland profiles api.
Every time I entry to decentraland web game (https://play.decentraland.org) , I find new random avatar. (but I find my name)
So, when I entry to decentraland account/market page…

LTarik
- 1
- 1
- 3
0
votes
1 answer
Fire an event with Decentraland SDK
I'm trying to fire a custom event in my Decentraland scene. According with the docs, I just need to do something like:
const events = new EventManager()
events.fireEvent(new MyEvent(field1, field2))
So, following that example I'm trying to simulate…

franco
- 112
- 1
- 13
0
votes
0 answers
Vimeo Live stream API - decentraland
I have all the necessary licenses from vimeo to enable the api functionality.
I'd like to stream a live event inside decentraland. Therefore, I've created an api key and now i try to get the HSL link over the api. According to the documentation from…

loonybin
- 21
- 2
0
votes
1 answer
Wait or know when is load the assets of entity completely
I would like to be able to identify when the object is already fully loaded in the engine
const box = new Entity()
box.getComponent(Transform).position.set(3, 1, 3)
var model=new GLTFShape()
box.addComponent(model)
engine.addEntity(box)
I mean…

Raidel Ross
- 5
- 2
0
votes
2 answers
Decentraland Preview in local struck at 88%
Hi I'm doing the below steps
Installed the decentraland SDK
$ node -v
v16.0.0
$ npm -v
8.13.2
$ dcl -v
3.11.0
created a new scene with dcl init
Installed the dependencies.
$dcl start
application started.
When we load the preview it is struck…

Seetharaman GR
- 272
- 1
- 13