added lua function for saving change to profile; added empty base for profile; updated frontend hash;

This commit is contained in:
Micah Acinapura
2019-09-05 14:57:01 -04:00
parent 56a6ed62aa
commit a4e0ad8b08
4 changed files with 100 additions and 1 deletions
+25
View File
@@ -0,0 +1,25 @@
-- This is a base scene that is included in most other scenes to set up defaults
-- loading this scene directly without any other elements added on top of it will
-- probably not work
local assetHelper = asset.require('util/asset_helper')
local sceneHelper = asset.require('util/scene_helper')
local propertyHelper = asset.require('util/property_helper')
-- Specifying which other assets should be loaded in this scene
asset.require('spice/base')
-- Load default key bindings applicable to most scenes
asset.require('util/default_keybindings')
asset.require('util/default_dashboard')
asset.require('util/default_joystick')
-- Load web gui
asset.require('util/webgui')
asset.request('customization/globebrowsing')
asset.onInitialize(function ()
openspace.setDefaultGuiSorting()
openspace.globebrowsing.loadWMSServersFromFile(
openspace.absPath("${DATA}/globebrowsing_servers.lua")
)
end)
+1 -1
View File
@@ -3,7 +3,7 @@ asset.require('./static_server')
local guiCustomization = asset.require('customization/gui')
-- Select which commit hashes to use for the frontend and backend
local frontendHash = "129a2c70ec8179b193fdb3a689c37bd65418ac22"
local frontendHash = "785d6fe3416b2e30bed0a04313ef61b0e2729645"
local dataProvider = "data.openspaceproject.com/files/webgui"
local frontend = asset.syncedResource({