mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-28 23:09:32 -05:00
0b91fd2642
- Lua style guides - FrameConversions - unloadMission, Add mission identifiers
64 lines
1.5 KiB
Lua
64 lines
1.5 KiB
Lua
-- @TODO (emmbr 2020-02-03) Potential threading issue later on? This will run on the main thread
|
|
local cyanTexture = openspace.createSingleColorImage("example_disc_color1", { 0.0, 1.0, 1.0 })
|
|
local purpleTexture = openspace.createSingleColorImage("example_disc_color2", { 0.5, 0.0, 0.5 })
|
|
|
|
local BasicDisc = {
|
|
Identifier = "BasicDisc",
|
|
Renderable = {
|
|
Type = "RenderableDisc",
|
|
Texture = cyanTexture,
|
|
Size = 1e10,
|
|
Width = 0.5
|
|
},
|
|
GUI = {
|
|
Name = "Basic Disc",
|
|
Path = "/Examples/Discs"
|
|
}
|
|
}
|
|
|
|
-- Elliptic discs can be created using a non-uniform scaling
|
|
-- For a full disc, use a width of 1.0
|
|
local FullEllipticDisc = {
|
|
Identifier = "FullEllipticDisc",
|
|
Transform = {
|
|
Scale = {
|
|
Type = "NonUniformStaticScale",
|
|
Scale = { 2.0, 1.0, 1.0 }
|
|
}
|
|
},
|
|
Renderable = {
|
|
Type = "RenderableDisc",
|
|
Texture = purpleTexture,
|
|
Size = 2e10,
|
|
Width = 1.0
|
|
},
|
|
GUI = {
|
|
Name = "Full Elliptic Disc",
|
|
Path = "/Examples/Discs"
|
|
}
|
|
}
|
|
|
|
|
|
asset.onInitialize(function()
|
|
openspace.addSceneGraphNode(BasicDisc)
|
|
openspace.addSceneGraphNode(FullEllipticDisc)
|
|
end)
|
|
|
|
asset.onDeinitialize(function()
|
|
openspace.removeSceneGraphNode(FullEllipticDisc)
|
|
openspace.removeSceneGraphNode(BasicDisc)
|
|
end)
|
|
|
|
asset.export(BasicDisc)
|
|
asset.export(FullEllipticDisc)
|
|
|
|
|
|
|
|
asset.meta = {
|
|
Name = "Example Discs",
|
|
Description = [[Examples of different types of rendered discs.]],
|
|
Author = "OpenSpace Team",
|
|
URL = "http://openspaceproject.com",
|
|
License = "MIT license"
|
|
}
|