English / 中文 | Windows Desktop | Ubuntu Desktop | Web Demo
- Name: Shadow Editor
- Version: v0.5.7 (Coming Soon)
- Description: Cross-platform 3D scene editor based on three.js, golang and mongodb.
- Source: GitHub Gitee | Document: Gitee | Demo: GitHub Gitee | Video: Weibo Bilibili | Assets: BaiduNetdisk
- Technology Stack: html, css, javascript, rollup, react.js, webgl, three.js, golang, mongodb, nodejs, electron, WebWorldWind.
- If helpful to you, please DOnate to support us. thank you!
- 3D GIS. (In development)
- Release Date: July 26, 2020
- Update Logs:
- 3D GIS. (In development)
- The
v0.4.6-csharpbranch will be deleted on August 1. - Fix the bug that it says "Only jpg, png, mp4 file is allowed to upload!" when uploading a mesh after uploading an image.
- Fix the bug that it says "Only zip file is allowed!" when uploading an image after uploading a mesh.
- The check box in front of the texture property is changed to enable and disable the texture, and add a delete button after the texture.
- General
- Cross-platform
- Windows, Linux, Mac
- Desktop, Web
- Multi-language support
- English、中文、繁體中文、日本語、한국어、русский、Le français
- Assets management
- scene, mesh, texture, material, audio, animation, screenshot, video, typeface
- Authority management
- organization, user
- role, authority
- registration, login, password modification
- Version management
- Scene history and logs
- undo, redo, auto saving
- Player
- play animations in the scene in real time, and can play full screen and in new window
- Settings
- Display, renderer, helpers, filter, weather, control mode, select mode, add mode, language
- Cross-platform
- Small scene editing
- Add mesh
- 3ds, 3mf, amf, assimp, awd, babylon, binary, bvh, collada, ctm
- draco, fbx, gcode, gltf, glb, js, kmz, lmesh, md2, pmd, pmx
- nrrd, obj, pcd, pdb, ply, prwm, sea3d, stl, vrm, vrml, vtk, X
- Built-in objects
- group
- plane, cube, circle, cylinder, sphere, icosahedron, torus, torus knot, teapot, lathe
- unscaled text, 3D text
- line segments, CatmullRom curve, quadratic Bezier curve, cubic Bezier curve, ellipse curve
- point marks
- arrow helper, axes helper
- sprite
- Built-in lights
- ambient light, directional light, point light, spotlight, hemispherical light, rect area light
- point light, hemispherical light, rect area light helper
- Built-in components
- background music, particle emitter
- sky, fire, water, smoke, cloth
- berlin terrain, sky sphere
- Materials editing
- LineBasicMaterial, LineDashedMaterial, MeshBasicMaterial, MeshDepthMaterial, MeshNormalMaterial
- MeshLambertMaterial, MeshPhongMaterial, PointsMaterial, MeshStandardMaterial, MeshPhysicalMaterial
- SpriteMaterial, ShaderMaterial, RawShaderMaterial
- Text editing
- javascript editing with intelligence
- shader editing
- json file editing
- Mesh export
- gltf、obj、ply、stl、Collada、DRACO
- Scene publishment
- Publish scene as static resources, and can be embedded in iframe
- Examples
- Arkanoid, camera, particle, ping pong, shader
- General tools
- Select, pan, rotate, zoom
- Perspective view, front view, side view, top view, grid mode
- Screenshot, record
- Draw point, draw line, draw polygon, spray
- Measure distance
- Add mesh
- GIS scene editing
- Satellite imagery
- Bing satellite image
- Google satellite image
- Tianditu satellite image
- 3D terrain
- Arcgis Elevation
- Terrain editing
- Ground features editing
- Pipe network editing
- District editing
- Data import
- OSM
- Sharp
- dxf
- Excel
- BIM
- Point cloud
- Satellite imagery
- Data visualization
- Real-time data access
- WebSocket
- Ajax
- UI
- Form
- Button, radio, checkbox, dropdown
- Panel
- Datagrid
- Form
- Chart
- Histogram
- Pie chart
- Line chart
- Real-time data access
- MongoDB v3.6.8+
- Chrome 81.0+ or Firefox 75.0+
The following is only required when you want to build from source.
- Golang 1.14.2+
- NodeJS 14.1+
- gcc 9.3.0+ (
tdm-gcc,MinGW-w64orMinGWon Windows, and make suregcccan be accessed through the command line) - git 2.25.1+
Note: The version number is for reference only.
You can use git to download the source code.
git clone https://github.com/tengge1/ShadowEditor.gitIn China, github is really slow, you can use gitee instead.
git clone https://gitee.com/tengge1/ShadowEditor.gitWeb Version:
- If you are in
China, runnpm run set-proxyto set golang and nodejs proxy. - Run
npm installto install nodejs dependencies. - Run
npm run buildto build the server and web. - Edit
build/config.toml, and modify the mongodb host and port. - Run
npm run startto launch the server. You can now visit:http://localhost:2020.
Desktop Version:
- Download
MongoDBand unzip it in theutils/mongodbfolder. - Build web version.
- Run
npm run build-desktopto build a desktop app in the folderbuild/desktop.
- Open
PowerShellorcmdin thebuildfolder as administrator. - Run
.\ShadowEditor installto install ShadowEditor as a service. - Run
.\ShadowEditor startto start ShadowEditor service. - Now you can visit:
http://localhost:2020. - You can also manage this service in the
Windows Services Manager.
- Edit
./scripts/service_linux/shadoweditor.service, set the right path. - Run
sudo cp ./scripts/service_linux/shadoweditor.service /etc/systemd/system/. - Run
sudo systemctl daemon-reloadto reload the service daemon. - Run
sudo systemctl start shadoweditorto start service. - Run
sudo systemctl enable shadoweditorto auto start service.
PS E:\github\ShadowEditor\build\> .\ShadowEditor
ShadowEditor is a 3D scene editor based on three.js, golang and mongodb.
This application uses mongodb to store data.
Usage:
ShadowEditor [command]
Available Commands:
debug Debug service on Windows
help Help about any command
install Install service on Windows
serve Start server
start Start service on Windows
stop Stop service on Windows
version Print the version number
Flags:
--config string config file (default "./config.toml")
-h, --help help for ShadowEditor
Use "ShadowEditor [command] --help" for more information about a command.
- Download and install
NodeJs,golang,MongoDBandVisual Studio Code. - It is recommended to install the following VSCode extensions which may be helpful.
ESLint, Go, Shader languages support for VS Code, TOML Language Support.
npm scripts usage:
npm install: install nodejs dependencies.
npm run build: build the server and web client.
npm run build-server: build only the server. (For development)
npm run build-web: build only the web client. (For development)
npm run build-desktop: build the desktoop version.
npm run dev: build the web client automatically when files changes.(For development)
npm run start: start the web server.
npm run set-proxy: set golang and nodejs proxy. (In China only)
npm run unset-proxy: unset golang and nodejs proxy.
npm run install-dev: install golang development tools.
npm run eslint: check js files and fix errors automatically.
npm run clean: delete the web and desktop builds.
npm run clear: delete useless nodejs packages.
Expand to view details
ShadowEditor is a project for both users and developers. You can contribute and try you idea on this project. No pension, but a lot of fun. To contribute, you should:
- Fork the repository.
- Create Feat_xxx branch.
- Commit your code.
- Create Pull Request.
Note: DO NOT submit large binaries, or the Pull Request may be rejected. If required, you can
add the files or directories to be ignored to the .gitignore file.
Expand to view details
- Failed when upload models.
You need to compress the model assets into a zip file, and the entry file cannot be nested in a folder. The server will decompress and put it in the ./build/public/Upload/Model folder, and add a record in the MongoDB _Mesh collection.
- How to combine multiple models together?
Basic geometry supports multiple levels of nesting. You can add a group (in the geometry menu), and then drag multiple models onto the group in the Hierachy Panel.
- How to enable authority?
Edit config.toml and set authority.enabled to true. The default administrator username is admin and the password is 123456.
- The brower report
asm.js has been disabled because the script debugger is connected. Please disconnect the debugger to enable asm.js.Error.
Complete error: asm.js has been disabled because the script debugger is connected. Please disconnect the debugger to enable asm.js. ammo.js (1,1) SCRIPT1028: SCRIPT1028: Expected identifier, string or number ShadowEditor.js (3948,8) SCRIPT5009: 'Shadow' is not defined.
Solution: Tencent browser does not support ammo.js (WebAssembly) compiled with Emscripten, it is recommended to use Chrome or Firebox instead.
- How can I upgrade from C# to golang version?
The data structure and web client is not changed, just copy ./ShadowEditor.Web/Upload/ folder to
build/public/Upload/.
- The desktop version cannot be opened.
Windows requires Visual C++ Redistributable for Visual Studio 2015. You can install from: https://www.microsoft.com/en-us/download/details.aspx?id=48145
If the desktop version cannot be opened, you can view logs.txt; if the port conflicts, you can modify the MongoDB and website ports in resources/app/config.toml.
MIT License
Thanks to the following open source projects.
Expand to view details
https://github.com/golang/go
https://github.com/BurntSushi/toml
https://github.com/dgrijalva/jwt-go
https://github.com/dimfeld/httptreemux
https://github.com/inconshreveable/mousetrap
https://github.com/json-iterator/go
https://github.com/mozillazg/go-pinyin
https://github.com/otiai10/copy
https://github.com/sirupsen/logrus
https://github.com/spf13/cobra
https://github.com/spf13/viper
https://github.com/urfave/negroni
https://go.mongodb.org/mongo-driver
https://github.com/facebook/react
https://github.com/mrdoob/three.js
https://github.com/rollup/rollup
https://github.com/babel/babel
https://github.com/eslint/eslint
https://github.com/rollup/rollup-plugin-babel
https://github.com/rollup/rollup-plugin-commonjs
https://github.com/rollup/rollup-plugin-json
https://github.com/rollup/rollup-plugin-node-resolve
https://github.com/egoist/rollup-plugin-postcss
https://github.com/rollup/rollup-plugin-replace
https://github.com/mjeanroy/rollup-plugin-strip-banner
https://github.com/andyearnshaw/rollup-plugin-bundle-worker
https://github.com/tweenjs/tween.js
https://github.com/JedWatson/classnames
https://github.com/d3/d3-dispatch
https://github.com/i18next/i18next
https://github.com/js-cookie/js-cookie
https://github.com/facebook/prop-types
https://github.com/codemirror/CodeMirror
https://github.com/jquery/esprima
https://github.com/tschw/glslprep.js
https://github.com/zaach/jsonlint
https://github.com/acornjs/acorn
https://github.com/kripken/ammo.js
https://github.com/dataarts/dat.gui
https://github.com/toji/gl-matrix
https://github.com/squarefeet/ShaderParticleEngine
https://github.com/mrdoob/stats.js
https://github.com/mrdoob/texgen.js
https://github.com/yomotsu/VolumetricFire
https://github.com/NASAWorldWind/WebWorldWind
https://github.com/jonbretman/amd-to-as6

