All Projects → decentraland → Editor Legacy

decentraland / Editor Legacy

Licence: mit
📝 Collaborative real-time edition of parcel scenes, with IPFS uploading. Based on aframe-inspector

Programming Languages

javascript
184084 projects - #8 most used programming language

Decentraland Parcel Editor

https://editor.decentraland.org

Edit a scene in real time with other users.

  • WebRTC Connections are created between users to sync any changes on the same scene
  • Audio and text chat is available for all concurrent users
  • The save button in the top-left corner uploads the scene to IPFS to continue working on it later

Next steps:

  • Uploading a parcel definition to the testnet LAND contract

This is based on A-Frame's visual inspector tool for scenes. To preview the scene in first person, press <ctrl> + <alt> + i. Make sure to check out A-Frame's inspector repository

Local Development

git clone [email protected]:decentraland/editor.git
cd editor
git submodule init
git submodule update

Create file named docker-compose.override.yaml, copy and paste this gist of code into it and save (we do this to override environment variables):

version: "2"

services:
  editor:
    environment:
     - NODE_ENV=dev
docker-compose build
docker-compose up
npm install
npm run build

Then load the server on https://localhost:4444/.

Deployment

To deploy to editor.decentraland.org:

  • ssh [email protected]
  • cd editor
  • git pull
  • cd ..
  • sudo docker-compose down && sudo docker-compose build && sudo docker-compose up -d

Branches are auto deployed to editor.decentraland.today/branch/<branchname>/index.html

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].