Files
OpenSpace/data/assets/examples/discs.asset
T
Alexander Bock 0b91fd2642 Global cleanup pass over asset files
- Lua style guides
- FrameConversions
- unloadMission, Add mission identifiers
2024-08-14 10:22:20 +02:00

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"
}