mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-02-06 03:29:40 -06:00
* changes to asset/loader/meta to support adding nodes created at runtime * update assets meta. * update tle helper and gui to work with changes * fixes #1840 * group titan trail and atmosphere with globe * license for magnetosphere Co-authored-by: ElonOlsson <olssonelon@gmail.com>
19 lines
565 B
Lua
19 lines
565 B
Lua
asset.export("webguiDevelopmentMode", false)
|
|
|
|
-- To make changes to the webgui:
|
|
|
|
-- 1) Set the above `webguiDevelopmentMode` to true
|
|
-- 2) Clone the repository: https://github.com/OpenSpace/OpenSpace-WebGuiFrontend
|
|
-- 3) Install nodejs (including npm)
|
|
-- 4) Within the repository, run `npm install` and `npm start`
|
|
|
|
|
|
asset.meta = {
|
|
Name = "Customization - User Interface",
|
|
Version = "1.0",
|
|
Description = [[ This asset is used by developers working on the GUI.]],
|
|
Author = "OpenSpace Team",
|
|
URL = "http://openspaceproject.com",
|
|
License = "MIT license"
|
|
}
|