mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-03-13 17:09:05 -05:00
* Updating all assets to new coding style * Cleaning up asset files * Moving default_actions and default_keybindings files * Changing procedural globes to explicitly specified globes * Move Spice loading explicitly to the initialize part and also deinitialize * Removing unused asset files * Removing asset_helper * Removing scale_model_helper asset * Removing script_scheduler_helper * Removing testing_keybindings * Remove procedural_globe
18 lines
373 B
Lua
18 lines
373 B
Lua
local Browser = {
|
|
Type = "ScreenSpaceBrowser",
|
|
Identifier = "ScreenSpaceBrowserExample",
|
|
Name = "Screen Space Browser Example",
|
|
Url = "https://www.openspaceproject.com/"
|
|
}
|
|
|
|
|
|
asset.onInitialize(function()
|
|
openspace.addScreenSpaceRenderable(Browser)
|
|
end)
|
|
|
|
asset.onDeinitialize(function()
|
|
openspace.removeScreenSpaceRenderable(Browser)
|
|
end)
|
|
|
|
asset.export(Browser)
|